Custom Query (146 matches)

Filters
 
Columns

Show under each result:


Results (1 - 100 of 146)

1 2
Ticket Summary Owner Type Priority Milestone Component
#1800 Unit test fails because of problem with reverse! dherman defect blocker dherman/zip.plt

Reported by jphelps, 10 years ago.

description

raco setup: error: during making for <planet>/schematics/schemeunit.plt/1/2/gui raco setup: ...s\ZZZZZ\AppData?\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module raco setup: in: reverse! raco setup: error: during launcher setup for <planet>/schematics/schemeunit.plt/1/2 (schemeunit) raco setup: map: contract violation raco setup: expected: list? raco setup: given: #f raco setup: argument position: 2nd raco setup: other arguments...: raco setup: #<procedure:path->string> ...s\ZZZZZ\AppData?\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module

in: reverse!

raco setup: error: during making for <planet>/dherman/zip.plt/2/1/private/tests raco setup: ...s\ZZZZZ\AppData?\Roaming\Racket\planet\300\6.1.1\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: reverse!: unbound identifier in module raco setup: in: reverse!

#129 audit duplicate-variable errors/non-errors dherman task critical dherman/javascript.plt

Reported by dherman, 16 years ago.

description

Things like function(x,x){...} and duplicate imports.

#280 eof error soegaard defect critical soegaard/bit-io.plt

Reported by rik.vanmechelen@…, 15 years ago.

description

It says in the comments that when you reach an eof it should return #f when reading. I got an error that the bitwise-and got eof as first argument the fix for this is: ;;;new if statement to chech for eof first

(define (read-few-bits n)

(if (eof-object? buffer)

#f (let ((value (bitwise-and buffer ; all bits in buffer

(sub1 (<<1 mask)))))

(set! bits-in-buffer (- bits-in-buffer n)) (set! mask (>> mask n)) (>> value bits-in-buffer)))) ; remove extra bits

and ;;;added and with not eof? ((and (= n 1) ; read one bit

(not (eof-object? buffer)))

(let ((value (if (bit-set? buffer mask) 1 0)))

(set! mask (>>1 mask)) (set! bits-in-buffer (sub1 bits-in-buffer)) value))

bye, Rik Vanmechelen rik.vanmechelen@… Vrije Universiteit Brussel

#2 sample bug eli defect major eli/sample-teachpacks.plt

Reported by elibarzilay@…, 17 years ago.

description

foo

#3 fmt uses set-cdr! ashinn defect major ashinn/fmt.plt

Reported by samdphillips@…, 17 years ago.

description

fmt.plt 1.0 uses set-cdr! which in PLT 4 doesn't work.

#5 API requests dherman enhancement major dherman/set.plt

Reported by dherman, 17 years ago.

description

Doug Orleans wrote:

Cool! It'd be nice, though, if it included analogs for the rest of the lset functions in SRFI-1, namely <=, =, adjoin, and diff+intersection. And an emptiness test, though (= set empty) might be enough. Oh, and (contains? set elt). Also, might be good to state in the docs that they're amortized linear. (Right?) Thanks! Sorry if you've already planned to do all these, I just got excited. :) --Doug

#13 support for v3 and v4 dherman defect major dherman/struct.plt

Reported by dherman, 17 years ago.

description

Danny Yoo wrote:

Hi Dave, I sent an earlier patch to struct.plt 2.3 to make it work with mzscheme 3.99, but didn't hear back from you yet. In any case, I took a look at it again, and the patch wasn't so good because it made it work only with mzscheme 3.99, which broke backwards compatibility. Since you probably want to make it work regardless of version, I've updated the patch so that it uses version-case to do the appropriate version-specific stuff. Summary of changes: * I created a separate module 'private/struct-info-compat.ss' which provides a function to get the predicate from the struct type syntax object. I updated datatype.ss to use this library. * As in the previous patch, I also modernized the test cases to use SchemeUnit? 2. The tests involving hierarchy are failing, but I don't think it's a problem with my patch, but rather with a missing 'definitions' collection that I don't know much about. I hope this helps!

#18 stream-split-at dherman defect major dherman/stream.plt

Reported by dherman, 17 years ago.

description

Steve Huwig wrote:

Hi, `stream-split-at' in stream.plt 1 1 only returns one value, and attempting to use that value results in errors. I looked at the source and I think there's a simple oversight:

  (define (stream-split-at i stream)
    (stream-delay
;    ^^^^^^^^^^^^ 
     (cond
       [(zero? i)
        (values stream-null stream)]
       [(stream-null? stream)
        (values stream-null stream-null)]
       [else
        (let-values ([(prefix suffix) (stream-split-at (sub1 i)
(stream-cdr stream))])
          (values (stream-cons (stream-car stream) prefix) suffix))])))

I don't think stream-delay is correct here! At least, when I changed the code to:

  (define (stream-split-at i stream)
     (cond
       [(zero? i)
        (values stream-null stream)]
       [(stream-null? stream)
        (values stream-null stream-null)]
       [else
        (let-values ([(prefix suffix) (stream-split-at (sub1 i)
(stream-cdr stream))])
          (values (stream-cons (stream-car stream) prefix) suffix))]))

the routine behaved as I expected. Is this a bug or am I missing something basic? Do you have a good example of using stream-split-at? With the original code, I tried:

(stream-split-at 3 (list->stream (list 1 2 3 4 5 6)))

#<struct:stream>

(stream-car (stream-split-at 3 (list->stream (list 1 2 3 4 5 6))))

. context (lexical binding) expected 2 values, received 1 value: #<struct:stream>

which left me cold, but with the new code, I was able to do:

(stream-split-at 3 (list->stream (list 1 2 3 4 5)))

#<struct:stream> #<struct:stream>

(let-values ([(front back) (stream-split-at 3 (list->stream (list 1 2

3 4 5)))]) (values (stream->list front) (stream->list back))) (1 2 3) (4 5) which is about what I expected to need to do. If this is a bug, then I think stream-partition and stream-span suffer the same bug. If it's not a bug, then apparently the bug is in my brain for not figuring out the right API. Thanks, Steve Huwig P.S. stream-split-at reverses the order of split-at arguments from SRFI-1, not sure if that's deliberate.

#22 stream-partition unusable dherman defect major dherman/stream.plt

Reported by dherman, 17 years ago.

description

Doug Orleans wrote:

I probably should have also mentioned stream-partition, which I posted about on the plt-scheme list. (It doesn't seem to be usable, because the stream it returns is not a delayed single value.)

#25 make-response/xhtml/full dherman enhancement major dherman/xhtml.plt

Reported by dherman, 17 years ago.

description

Hans Oesterholt-Dijkema wrote:

Dear David, Could you extend xhtml.plt with a function: (make-response/xhtml/full ...) ? I need to set cookies, and still want to use the XHTML headers. Thanks in advance, Hans

#29 memoization is not thread-safe dherman enhancement major dherman/memoize.plt

Reported by dherman, 17 years ago.

description

It would be good to at least have a synchronized version of the memoization operations.

#31 make sets sequences dherman enhancement major dherman/set.plt

Reported by dherman, 17 years ago.

description

Mark Engelberg wrote:

I thought you might be interested to know that if you add the following to set.plt, then sets become compatible with sequences and can be used inside of for loops.

(define (set->seq s)
  (make-do-sequence
   (lambda ()
     (let-values ([(more? next) (sequence-generate (in-hash-keys
(set-elts s)))])
       (values (λ (i) (next))
               (λ (i) (more?))
               (more?)
               (lambda (i) i)
               (lambda (v) #t)
               (lambda (i v) #t))))))

(define-struct set (elts)
  #:property prop:custom-write (lambda (set port write?)
                                 (write-hash "set" (set-elts set) port write?))
  #:property prop:sequence set->seq)
#32 optional and keyword args dherman enhancement major dherman/memoize.plt

Reported by dherman, 17 years ago.

description

Optional and keyword args should be handled as well.

#33 make-filter-input-port hopelessly broken dherman defect major dherman/io.plt

Reported by dherman, 17 years ago.

description

The make-filter-input-port procedure is breaking test cases and appears to be hopelessly broken, at least in PLT v4.

#34 Function.prototype.toString should produce source dherman enhancement major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

The toString method for functions should produce their source.

#35 possible semantic issues with exceptions dherman defect major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

Need to investigate semantic issues with exceptions:

  • return from finally blocks
  • suspicious uses of dynamic-wind?
#54 "use lexical scope" pragma dherman task major dherman/javascript.plt

Reported by dherman, 17 years ago.

description
use lexical scope;
#56 parameter for top-level let semantics dherman enhancement major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

At top level, we've argued back and forth about whether let should behave the same as var. Make this a parameter.

Notice that with use lexical scope (see #54) there's less possible distinction. Except for the question of whether a top-level let shadows a top-level var.

#81 make prophecies sequences dherman enhancement major dherman/prophecy.plt

Reported by dherman, 17 years ago.

description

Similar to #31, release a new version of prophecy.plt with a prophecy->sequence procedure and perhaps a for/prophecy?

#87 Incompatible with mzscheme 4+ daedalus defect major daedalus/prometheus.plt

Reported by troelskn@…, 17 years ago.

description

The following error happens, when loading the library:

    private/hermes.scm:129:10: compile: unbound identifier in module in: set-cdr!

This is due to set-cdr! being deprecated from mzscheme 4

#99 add an expansion phase to the compiler dherman task major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

Everything that can be defined via desugaring should be implemented as a compiler macro. The compiler should include an expansion phase. There should be a special kind of `gensym' identifier that the expander recognizes. There should also be something to enforce referential transparency.

#114 Doc warnings dherman defect major dherman/memoize.plt

Reported by samth@…, 17 years ago.

description

setup-plt: WARNING: undefined tag in <planet>/dherman/memoize.plt/3/1/memoize.scrbl: setup-plt: ((planet "main.ss" ("dherman" "memoize.plt" 3 1)) define/memo*) setup-plt: ((planet "main.ss" ("dherman" "memoize.plt" 3 1)) memo-lambda) setup-plt: ((planet "main.ss" ("dherman" "memoize.plt" 3 1)) memo-lambda*) setup-plt: ((planet "main.ss" ("dherman" "memoize.plt" 3 1)) define/memo)

setup-plt: rendering: <planet>/dherman/memoize.plt/3/1/memoize.scrbl memoize.scrbl:47:14: WARNING: no declared exporting libraries for definition in: define/memo memoize.scrbl:51:14: WARNING: no declared exporting libraries for definition in: define/memo* memoize.scrbl:56:14: WARNING: no declared exporting libraries for definition in: memo-lambda memoize.scrbl:60:14: WARNING: no declared exporting libraries for definition in: memo-lambda*

#116 long startup time vegashacker enhancement major vegashacker/leftparen.plt

Reported by vegashacker, 17 years ago.

description

Submitted be Jean:

"server is very long to start (around 1 mn)"

#120 binding arrows in DrScheme broken dherman defect major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

All the mucking with the implementation of variable binding has broken the DrScheme? binding arrows for the JavaScript? language level.

#121 test infrastructure for different compilation modes dherman task major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

Need to be able to test module evaluation, script evaluation, and interaction evaluation etc.

#122 coverage for compiler tests dherman task major dherman/javascript.plt

Reported by dherman, 17 years ago.

description

Need tests for all the clauses in the compiler.

#127 errors on initial compile dherman defect major dherman/javascript.plt

Reported by clements, 17 years ago.

description

When I evaluate this program

#lang scheme

(require (planet dherman/javascript:8:0))

(eval-script "print(40 + 2)")

I get this output down below:

open-input-file: cannot open input file: "/Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/private/tests/main.ss" (No such file or directory; errno=2) setup-plt: error: during Building docs for /Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/test.plt/2/0/test.scrbl setup-plt: open-input-file: cannot open input file: "/Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/private/tests/main.ss" (No such file or directory; errno=2) open-input-file: cannot open input file: "/Users/clements/plt/src/build/main.ss" (No such file or directory; errno=2) setup-plt: error: during Building docs for /Users/clements/Library/PLT Scheme/planet/300/4.1.2.5/cache/dherman/javascript.plt/8/0/scribblings/javascript.scrbl setup-plt: open-input-file: cannot open input file: "/Users/clements/plt/src/build/main.ss" (No such file or directory; errno=2) 42

#131 stack trace is often mostly unusable vegashacker defect major vegashacker/leftparen.plt

Reported by vegashacker, 16 years ago.

description

Stack traces in LeftParen? often begin like this, apparently skipping over the part of the trace you actually care about. This makes it sometimes extremely hard to debug.

=== context ===
core
...r/private/servlet.ss:31:19
...r/private/servlet.ss:31:19
/Applications/PLT Scheme v4.1.0.3/collects/web-server/dispatchers/dispatch-servlets.ss:53:2\
: servlet-content-producer/path
dispatcher/c
dispatcher/c
/Applications/PLT Scheme v4.1.0.3/collects/scheme/private/more-scheme.ss:170:2: select-hand\
ler/no-breaks
[snip]
#133 Use of {{{set-cdr!}}} jim defect major jim/webit.plt

Reported by untyped, 16 years ago.

description

Hi Jim,

Webit! uses set-cdr!, which is no longer possible in PLT 4 now cons cells are immutable by default. I believe you have the option of switching over to mutable cons cells or removing all mutation. More information here:

http://blog.plt-scheme.org/2007/11/getting-rid-of-set-car-and-set-cdr.html

Many thanks,

-- Dave Gurnell www.untyped.com

#138 Doesn't work in Current Version of PLT untyped defect major untyped/delicious.plt

Reported by anonymous, 16 years ago.

description

Looks like it has a dep on srfi-42 which is broken Or rather, it refers to a file in srfi-42 that no longer exists Also ssax and unlib problems

#139 Doesn't work in Current Version of PLT untyped defect major untyped/delicious.plt

Reported by zitterbewegung@…, 16 years ago.

description

Looks like it has a dep on srfi-42 which is broken Or rather, it refers to a file in srfi-42 that no longer exists Also ssax and unlib problems

#140 support unicode kazzmir defect major kazzmir/peg.plt

Reported by jon, 16 years ago.

description

Add some convenient syntax for unicode.

#143 Request for docs on interaction model vyzo enhancement major vyzo/gnuplot.plt

Reported by clements@…, 16 years ago.

description

It's unclear from the docs how what the model is for an interaction between DrScheme? and gnuplot. It appears that there's some kind of stateful sequence where you add pieces of data and then call plot, but I'm not sure whether it gets reset when you plot, etc. The docs on gnuplot-plot are also less helpful than they could be; it appears from the way the docs are structured that calling 'gnuplot-plot' is supposed to open a window; it doesn't, on my machine, but I can't tell whether this is a doc bug or a gnuplot.plt bug (or whether I just need to update DrScheme?, which I'm trying now).

#147 Planet breakage? Some surprising dependencies from xmlrpc.plt schematics defect major schematics/xmlrpc.plt

Reported by goetter@…, 16 years ago.

description

Something in xmlrpc's chain of dependencies seems to pull in a very old version of schemeunit, a version that doesn't compile on recent PLT. This is on version 4.1.3[3m] on Win XP.

C:\Program Files\PLT>planet install schematics xmlrpc.plt 4 0 schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for <planet>/schematics/schemeunit.plt/1/2 (schemeunit) setup-plt: schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for <planet>/schematics/schemeunit.plt/1/2/gui setup-plt: ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module in: reverse! setup-plt: error: during making for <planet>/lshift/xxexpr.plt/1/0 (xxexpr) setup-plt: ...er\Application Data\PLT Scheme\planet\300\4.1.3\cache\schematics\schemeunit.plt\1\2\schemeunit.ss:103:5: compile: unbound identifier in module i n: reverse! default-load-handler: cannot open input file: "C:\Program Files\PLT\collects\web-server\private\response.ss" (The system cannot find the file specified.; errno=2) setup-plt: error: during making for <planet>/schematics/xmlrpc.plt/4/0 (xmlrpc) setup-plt: default-load-handler: cannot open input file: "C:\Program Files\PLT\collects\web-server\private\response.ss" (The system cannot find the file specified.; errno=2)

I started from an empty planet cache, and ended up with

C:\Program Files\PLT>planet show Normally-installed packages:

jim webit.plt 1 6 lizorkin ssax.plt 2 0 lizorkin sxml.plt 2 1 lshift xxexpr.plt 1 0 ryanc require.plt 1 3 schematics schemeunit.plt 1 2 schematics schemeunit.plt 2 11 schematics schemeunit.plt 3 3 schematics xmlrpc.plt 4 0

#148 Cannot load package in 4.1.4 oesterholt defect major oesterholt/internat.plt

Reported by anonymous, 16 years ago.

description

The package doesn't seem to load in DrScheme? 4.1.4

#lang scheme/gui (require (planet "internat.ss" ("oesterholt" "internat.plt" 1 2)))

==> open-input-file: cannot open input file: "/Users/john/Library/PLT Scheme/planet/300/4.1.4/cache/oesterholt/internat.plt/1/2/internat.ss" (No such file or directory; errno=2)

Is this a packaging problem?

#151 _ pattern succeeds on end of input? kazzmir defect major kazzmir/peg.plt

Reported by pnkfelix@…, 16 years ago.

description

The behavior below does not seem to agree with Bryan Ford's POPL '04 paper:

#lang scheme
(require (planet kazzmir/peg:2:0/peg))
(parse (peg (start s) (grammar (s ((_) $)))) "a")
(parse (peg (start s) (grammar (s ((_ _) $)))) "a")

produces the output:

Welcome to DrScheme, version 4.1.4 [3m].
Language: Module; memory limit: 128 megabytes.
#\a
#<procedure:end-of-input>
> 

I would have expected #f for that last output.

#154 schememodlang/this-package + defmodulelang/this-package cce enhancement major cce/scheme.plt

Reported by anonymous, 16 years ago.

description

These would be nice

#158 Feature request: lang/this-package cce enhancement major cce/scheme.plt

Reported by dherman, 16 years ago.

description

I need to be able to document PLT languages with planet module paths. I have a private implementation that looks like this:

(define-syntax (lang/this-package stx)
  (syntax-case stx ()
    [(sp)
     (quasisyntax/loc stx
       (SCHEME (UNSYNTAX (hash-lang)) planet #,(build-planet-id stx #f)))]
    [(sp name)
     (identifier? #'name)
     (quasisyntax/loc stx
       (SCHEME (UNSYNTAX (hash-lang)) planet #,(build-planet-id stx #'name)))]))

But I'm now using your package for defmodule/this-package etc, and it would be good to be able to use your package for everything.

#175 srfi.plt does not install cleanly due to error in info.ss soegaard defect major soegaard/srfi.plt

Reported by cobbe, 16 years ago.

description

Upon trying to install this package from the shell, I get the error message below. MacOS 10.5.6, Intel. Additionally, if I run setup-plt (no args) after attempting this installation, I get the same error message. PLT version 4.1.5.5, built from svn revision 14611.

[perdita:~]$ planet install soegaard srfi.plt 2 1 downloading soegaard/srfi:2.1 from planet.plt-scheme.org via HTTP

======= Installing srfi.plt on Sun, 3 May 2009 12:55:24 =======

setup-plt: version: 4.1.5.5 [3m] setup-plt: variants: 3m setup-plt: main collects: /Users/cobbe/Applications/plt/collects setup-plt: collects paths: setup-plt: /Users/cobbe/Library/PLT Scheme/4.1.5.5/collects setup-plt: /Users/cobbe/Applications/plt/collects setup-plt: Unpacking archive from /Users/cobbe/Library/PLT Scheme/planet/300/packages/soegaard/srfi.plt/2/1/srfi.plt setup-plt: making directory 42-eager-comprehensions in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking 42-eager-comprehensions.scm in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./42-eager-comprehensions/

.. lots more unpacking messages snipped ..

setup-plt: unpacking 78.ss in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking doc.txt in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ setup-plt: unpacking info.ss in /Users/cobbe/Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/./ Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/42-eager-comprehensions/info.ss:10:2: infotab-module: not a well-formed definition at: (define required-core-version field "360") in: (#%module-begin (define name "Srfi") (define blurb (list (quote (div (p (b "SRFI Extensions")) (p "This package provides extensions to:") (p (b "SRFI 42") "- Eager comprehensions: " "Extra generators :match, :plt-match, :let-value, :pairs, :do-until, a...

context

/Users/cobbe/Applications/plt/collects/setup/infotab.ss:10:20: loop /Users/cobbe/Applications/plt/collects/setup/infotab.ss:7:2 /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:58:16 /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:104:0: omitted-paths* /Users/cobbe/Applications/plt/collects/setup/private/omitted-paths.ss:58:16 /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:233:2: planet->cc /Users/cobbe/Applications/plt/collects/scheme/private/map.ss:22:17: loop /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:295:26 /Users/cobbe/Applications/plt/collects/scheme/private/map.ss:22:17: loop /Users/cobbe/Applications/plt/collects/scheme/list.ss:288:2: append-map /Users/cobbe/Applications/plt/collects/setup/setup-unit.ss:277:2: collection-closure

setup-plt: WARNING: Library/PLT Scheme/planet/300/4.1.5.5/cache/soegaard/srfi.plt/2/1/42-eager-comprehensions/info.ss:10:2: infotab-module: not a well-formed definition at: (define required-core-version field "360") in: (#%module-begin (define name "Srfi") (define blurb (list (quote (div (p (b "SRFI Extensions")) (p "This package provides extensions to:") (p (b "SRFI 42") "- Eager comprehensions: " "Extra generators :match, :plt-match, :let-value, :pairs, :do-until, a...

#177 First line blank -> broken indenting abromfie defect major abromfie/drocaml.plt

Reported by anonymous, 16 years ago.

description

If the first line in an ocaml file is blank, it appears that drocaml does not do any indenting further down.

How to repeat:

- Change to drocaml language - Open new frame - type <return> let x = <return>x

The x does not jump to the right, nor does <tab> work correctly. Removing the blank line at the beginning of the frame fixes everything up.

#182 example from docs defines MDistributive module twice (and MDistributeLists not at all) cce defect major cce/dracula.plt

Reported by pnkfelix, 16 years ago.

description

Another bogosity in dracula docs:

The module MDistributeLists provides an implementation of IDistributeLists for any implementation of IDistributive:

  (module MDistributive
    (import IAssociative (addop a))
    (import ICommutative (addop a))
    (import IDistributive (addop a) (mulop m))
    (defun add (xs)
      (if (endp (cdr xs))
          (car xs)
          (a (car xs) (add (cdr xs)))))
    (defun mul (x ys)
      (if (endp xs)
          nil
          (cons (m x (car ys)) (mul x (cdr ys)))))
    (export IDistributeLists (addall add) (mulall mul)))
#183 dracula rename export example from reference docs does not work cce defect major cce/dracula.plt

Reported by pnkfelix, 16 years ago.

description

Here is (slightly modified) code from the 8.2 reference manual:

(interface IAssociative
  (sig mulop (x y))
  (con mulop-associative
       (equal (mulop a (mulop b c))
              (mulop (mulop a b) c))))

(interface ICommutative
  (include IAssociative)
  (con mulop-commutative
       (equal (mulop a b) (mulop b a))))

(interface IDistributive
  (include IAssociative)
  (include ICommutative)
  (sig addop (x y))
  (con addop/mulop-distributive
       (equal (mulop a (addop b c))
              (addop (mulop a b) (mulop a c)))))

(module MDistributiveA
  (defun add (a b) (+ a b))
  (defun mulop (a b) (* a b))
  (export IAssociative (addop add))
  (export ICommutative (addop add))
  (export IDistributive (addop add)))

(module MDistributiveB
  (defun add (a b) (+ a b))
  (defun mul (a b) (* a b))
  (export IAssociative (addop add))
  (export ICommutative (addop add))
  (export IDistributive (addop add) (mulop mul)))

Hitting RUN for this example raises the following error:

. mulop: undefined in: mulop

(it also highlights the mulop in the IAssociative interface, which is not terribly useful and may be a usability bug; read on for why I think this.)

If I comment out the definition of MDistributiveB, so that MDistributiveA is the only module providing relevant exports, then the code runs fine.

I assume the problem here is something along the lines of "the docs should be changed so that the MDistributive module exports mul/mulop instead of add/addop into the IAssociative interface.


More generally, all of the examples in the dracula docs need to be tested directly.

#184 modular acl2 unresolved import problem, useless error message cce defect major cce/dracula.plt

Reported by pnkfelix, 16 years ago.

description

Running the following program in Modular ACL2

(interface Ispec-and1 (sig andp1 (x y)))

(interface Ispec-and2 (sig andp2 (x y)))

(module Mprob
  (import Ispec-and1)
  (defun andp2 (x y) (andp1 x y))
  (export Ispec-and2))

(module Mprob/impl-and1
  (defun andp1 (x y) (and x y))
  (export Ispec-and1))

(link Mprob/test (Mprob Mprob/impl-and1))
(invoke Mprob/test)

yields the following error message:

. invoke: unresolved imports:
((andp1))
from exports:
((andp1) (andp2))
 in: mprob/test

1. Is my program actually doing something wrong? I do not see why any imports are unresolved. (The error does not occur if I take out the invoke on the last line of the program.

2. Either way, the error message is not helpful.

#186 Dracula errors on (just) + or - at REPL cce defect major cce/dracula.plt

Reported by pnkfelix, 16 years ago.

description

Start Dracula (bug happens in both ACL2 and Modular ACL2)

Go to the REPL. Type + and hit enter. You can do the same thing for -

I get the following internal error from DrScheme?:

char-ci=?: expects type <character> as 1st argument, given: #<eof>; other arguments were: #\i

 === context ===
/Users/pnkfelix/Library/PLT Scheme/planet/300/4.1.5/cache/cce/dracula.plt/8/2/lang/acl2-readtable.ss:64:6: check-infinity
/Applications/PLT Scheme v4.1.5/collects/scheme/private/contract-arrow.ss:1347:3
/Applications/PLT Scheme v4.1.5/collects/framework/private/text.ss:2071:4: on-local-char method in ...work/private/text.ss:1910:2
/Applications/PLT Scheme v4.1.5/collects/scheme/private/more-scheme.ss:155:2: call-with-break-parameterization
/Applications/PLT Scheme v4.1.5/collects/scheme/private/more-scheme.ss:271:2: call-with-exception-handler

Note that the internal error does not happen if you just do * at the REPL.

I assume the problem here is that there's a makeshift lexer that assumes you're trying to read a token like +inf.0 or -inf.0, and is not prepared for the sudden end to input stream.

#191 SchemeUnit checks for syntax errors schematics enhancement major schematics/schemeunit.plt

Reported by schematics, 16 years ago.

description

Two checks:

- fails if a macro expansion yields a syntax error - fails if a macro expansion does not yield a syntax error

#200 apparent Scribble error during package installation cce defect major cce/scheme.plt

Reported by cobbe, 16 years ago.

description

Fresh svn checkout & build on 7 Sept 09, Mac OS 10.5.8, Intel. I deleted ~/Library/PLT Scheme/planet during the rebuild, so I'm going off a completely fresh planet installation.

I started DrScheme and typed

(require (planet jaymccarthy/sqlite:4:5/sqlite))

at the prompt, and got a slew of error messages. The only one that appears to be relevant to your package is the following:

require: unknown module: 'program setup-plt: error: during Building docs for /Users/cobbe/Library/PLT Scheme/planet/300/4.2.1.8/cache/cce/scheme.plt/4/1/scribblings/main.scrbl setup-plt: require: unknown module: 'program

(I'm not sure if the last line comes up while trying to build your module; there are lots of other error messages that seem to be coming from other packages.)

#204 Parsing of missing closing HTML tags duplicates HTML elements ashinn defect major ashinn/html-parser.plt

Reported by nothere44@…, 16 years ago.

description

(html->sxml "<div><input name=a><input name=b></div>") produces ((div (input (@ (name "a")) (input (@ (name "b")))) (input (@ (name "b")))))

Note that the input element named b is produced twice. My guess as to what is happening is that since the inputs are unclosed, the parser doesn't close them until it hits the closing </div>. At this point, it figures out that everything unclosed beforehand should be closed and notes two input elements that should be closed and closes them. However, it had already parsed the first input as containing the second input in its body, and since it doesn't reparse this it ends up closing the first input after it encloses the second input as well as closing the second input. I doubt this is intended behaviour.

This came up on yahoo.com (god, why can't they write html). Browsers rendered the site as intended (as if it was <div><input name="a"/><input name="b"/></div>), but the html->sxml parser did not.

#209 error: "car: expects argument of type <pair>; given ()" on specific input dherman defect major dherman/c.plt

Reported by zwizwa, 16 years ago.

description

The following 2-line input to `parse-program' produces the error: "car: expects argument of type <pair>; given ()"

void foo(void *x, void *y) { int i = foo(x, y); } void bar(void *x, void *y) { int i = bar(x, y); }

#210 Fails to compile with 4.2.2 schematics defect major schematics/port.plt

Reported by samth@…, 16 years ago.

description

scheme' now provides port->string', and thus this package fails to compile.

#214 scribble warnings soegaard defect major soegaard/galore.plt

Reported by Sam TH, 16 years ago.

description

I get the following scribble warnings with galore 4.2:

setup-plt: WARNING: undefined tag in <planet>/soegaard/galore.plt/4/2/doc.scrbl: setup-plt: ((lib "srfi/67.ss") number-compare) setup-plt: ((lib "srfi/67.ss") integer-compare)

#217 segments->painter return is failing on being passed to paint soegaard defect major soegaard/sicp.plt

Reported by ebellani@…, 16 years ago.

description

;; examples of segments (define first-segment (make-segment (make-vect 0.0 1.0)

(make-vect 2.0 3.0)))

(define second-segment (make-segment (make-vect 4.0 5.0)

(make-vect 6.0 7.0)))

(paint (segments->painter (list first-segment

second-segment)))

;; fails with:

;; for-each: expects type <proper list> as 2nd argument, given: ({{0.0 . 1.0} 2.0 . 3.0} {{3.0 . 5.0} 6.0 . 7.0}); other arguments were: #<procedure:...t/2/1/prmpnt.scm:115:7>

#219 error on require schematics defect major schematics/benchmark.plt

Reported by Sam TH, 16 years ago.

description

I get this error loading this package:

/home/samth/.plt-scheme/planet/300/4.2.2.6/cache/schematics/benchmark.plt/2/1/benchmark.ss:104:15: module: identifier is already imported at: make-statistics in: (define-values (struct:statistics make-statistics statistics? statistics-mean1 statistics-mean2 statistics-std-dev1 statistics-std-dev2 statistics-slowdown) (let-values (((struct: make- ? -ref -set!) (syntax-parameterize ((struct-field-index (lambda (st...

#220 warnings from documentation untyped defect major untyped/unlib.plt

Reported by Sam TH, 16 years ago.

description

Building v3.20, I get these scribble warnings:

setup-plt: WARNING: undefined tag in <planet>/untyped/unlib.plt/3/20/scribblings/unlib.scrbl: setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") let*-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") letrec-values-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") let-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") letrec-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") define-values-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") let-values-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") define-debug) setup-plt: ((planet "base.ss" ("untyped" "unlib.plt" 3 20) "scribblings") let*-values-debug)

#234 slide/stage cce defect major cce/scheme.plt

Reported by Sam TH, 15 years ago.

description

slide/stage is documented under slide/staged (note d)

#235 add name? to staged cce defect major cce/scheme.plt

Reported by Sam TH, 15 years ago.

description

It would be nice if staged' bound name?' to #t or #f for each name in the relevant stage.

#237 scribble text renderer dies with a type error robby defect major _default-component

Reported by dyoo, 15 years ago.

description

I'm trying to generate my Moby documentation as a text file through Scribble. I'm running into the following error:

MITHRIL:moby dyoo$ ~/local/plt-svn/bin/scribble manual.scrbl

[Output to manual.txt]

car: expects argument of type <pair>; given #<paragraph>

context

/Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:46:6: render-flow method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:57:6: render-table method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:23:17: loop /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:46:6: render-flow method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:21:6: render-part method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scribble/text-render.ss:21:6: render-part method in ...ibble/text-render.ss:8:4 /Users/dyoo/local/plt-svn/collects/scheme/private/map.ss:18:11: map /Users/dyoo/local/plt-svn/collects/scribble/run.ss:90:0: build-docs /Users/dyoo/local/plt-svn/collects/scribble/run.ss: [running body]

I can't make heads or tails of the types yet. I see the html renderer is doing something special with tables, so I suspect that the text renderer should be doing something similar.

#242 Digest contexts are leaked. soegaard defect major soegaard/digest.plt

Reported by David Brown <plt@…>, 15 years ago.

description

The library uses EVP_MD_CTX_create to create each digest, but never calls EVP_MD_CTX_cleanup. This causes the EVP library to leak the context descriptor for each call.

(require (planet soegaard/digest:1:2/digest)) (let loop () (bytes-digest #"Hello" 'sha1) (loop))

quickly consumes large amounts of memory, and doesn't release it.

#263 wrong compile-omit-paths entry in info.ss lizorkin defect major lizorkin/sxml.plt

Reported by ryanc@…, 15 years ago.

description

The entry for compile-omit-paths in "info.ss" refers to "test.ss", which does not exist. It should refer to "tests.ss" (plural) instead.

#271 permissive? kazzmir defect major kazzmir/planet-manager.plt

Reported by laurent.orseau@…, 15 years ago.

description

In planet-utils.ss, (permissive? #t) cannot be evaluated because `permissive?' is not bound.

#272 incomplete folders kazzmir defect major kazzmir/planet-manager.plt

Reported by laurent.orseau@…, 15 years ago.

description

In my planet cache folder, I had a planet sub-folder that was incomplete. My folder hierarchy was then: ...\planet\300\4.2.4\cache\orseau\mred-designer.plt\3 and that ends here, the directory is empty, because of a "planet remove" of that package.

planet-manager crashes on loading with: """ procedure tree-stuff->row-or-false: expects 3 arguments, given 2: #<path:mred-designer.plt> "3" """

This is probably an MzScheme? internal error, since I couldn't find tree-stuff->row-or-false in you package. Removing the "faulty" subfolders solved the problem though.

#273 build-path: absolute path kazzmir defect major kazzmir/planet-manager.plt

Reported by laurent.orseau@…, 15 years ago.

description

Now I'm really stuck.

Trying to require the package:

(require (planet kazzmir/planet-manager:1:1/gui))

build-path: absolute path "C:\Documents and Settings\HP_Eigenaar\Application Data\PLT Scheme\4.2.2.4\collects\my-scheme\fmt\planet-fmt.plt" cannot be added to the path "C:\Users\orseau\AppData?\Roa..."

I don't know what to do with that. The path "...HP_Eigenaar..." does not seem to be located on my computer, and I have not installed v4.2.2.4 at some time.

Best Regards, Laurent P.S. : I'd really like to test your package, it sounds nice!

#276 Start function doesn't allow for changing fps kazzmir enhancement major kazzmir/allegro.plt

Reported by almeidaraf@…, 15 years ago.

description

The start function from game module doesn't allow the user to use a different fps from 30. It would be nice if it was a world field or something like that.

#277 World object doesn't export get-objects kazzmir enhancement major kazzmir/allegro.plt

Reported by almeidaraf@…, 15 years ago.

description

I think it would be helpful to be able to call get-objects on a World object, but that doesn't seem to be exported. Maybe it requires a (provide World) call?

#281 Please consider using development links. ocorcoll task major ocorcoll/beanscheme.plt

Reported by cce, 15 years ago.

description

To the developer of beanscheme.plt,

Your frequent updates of beanscheme.plt are understandable, as it allows you to test out each intermediate version of your software. However, I am sure it is a hassle to create, upload, and redownload your software; furthermore, it creates unnecessary posts on the planet-announce mailing list.

I suggest that you read about "development links" which let you compile and test PLaneT packages on your own computer, uploading only when you need to publish code for other users.

You can find documentation about development links here (this tinyurl.com address links to a specific page on docs.plt-scheme.org):

 http://tinyurl.com/PLaneT-development-links

Thanks, and good luck with your PLT Scheme project!

Carl Eastlund cce@… Ph.D. student Northeastern University

#282 Unable to make 4.2.5 with shared libraries enabled. robby defect major _default-component

Reported by snider6982@…, 15 years ago.

description

I successfully made and installed 4.2.5 without enabling shared libraries. But when I ran configure --enable-shared in the plt-4.2.5/src/build directory, then make, make returned with a SIGSEGV. I'm running Fedora 13-x86_64, with the latest Fedora gcc, 4.4.4-2.

From the strace output file, it looks like mzschemecgc segfaulted for --enable-shared. Here's the strace output from the last execve to the SIGSEGV:

32029 execve("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/lt-mzschemecgc", ["/home/gene/packages/plt-scheme/p"..., "-cqu", "../../../mzscheme/gc2/xform.ss", "--setup", ".", "--cpp", "gcc -E -I./.. -I../../../mzschem"..., "--keep-lines", "-o", "xsrc/precomp.h", "../../../mzscheme/gc2/precomp.c"], 53 vars */) = 0 32029 brk(0) = 0x95f000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc709b000 32029 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/x86_64/libmzscheme-4.2.5.so", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/x86_64", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls/libmzscheme-4.2.5.so", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/tls", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/x86_64/libmzscheme-4.2.5.so", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/x86_64", 0x7fff9248f680) = -1 ENOENT (No such file or directory) 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libmzscheme-4.2.5.so", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\302\2\0\0\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=7062281, ...}) = 0 32029 mmap(NULL, 4430760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f1fc6c61000 32029 mprotect(0x7f1fc6e49000, 2097152, PROT_NONE) = 0 32029 mmap(0x7f1fc7049000, 118784, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e8000) = 0x7f1fc7049000 32029 mmap(0x7f1fc7066000, 215976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f1fc7066000 32029 close(3) = 0 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libmzgc-4.2.5.so", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\271\0\0\0\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=482194, ...}) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc6c60000 32029 mmap(NULL, 3182208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f1fc6957000 32029 mprotect(0x7f1fc697b000, 2093056, PROT_NONE) = 0 32029 mmap(0x7f1fc6b7a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23000) = 0x7f1fc6b7a000 32029 mmap(0x7f1fc6b7c000, 933504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f1fc6b7c000 32029 close(3) = 0 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/tls/x86_64/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/usr/lib/tls/x86_64", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/tls/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/usr/lib/tls", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/x86_64/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/usr/lib/x86_64", 0x7fff9248f620) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 stat("/usr/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0 32029 open("/etc/ld.so.cache", O_RDONLY) = 3 32029 fstat(3, {st_mode=S_IFREG|0644, st_size=95054, ...}) = 0 32029 mmap(NULL, 95054, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f1fc693f000 32029 close(3) = 0 32029 open("/lib64/libdl.so.2", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\364?\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=22536, ...}) = 0 32029 mmap(0x3ff4000000, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff4000000 32029 mprotect(0x3ff4002000, 2097152, PROT_NONE) = 0 32029 mmap(0x3ff4202000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x3ff4202000 32029 close(3) = 0 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/lib64/libm.so.6", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360>@\364?\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=598928, ...}) = 0 32029 mmap(0x3ff4400000, 2633944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff4400000 32029 mprotect(0x3ff4483000, 2093056, PROT_NONE) = 0 32029 mmap(0x3ff4682000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x3ff4682000 32029 close(3) = 0 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/lib64/libpthread.so.0", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\\\300\363?\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=146488, ...}) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693e000 32029 mmap(0x3ff3c00000, 2212768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff3c00000 32029 mprotect(0x3ff3c18000, 2093056, PROT_NONE) = 0 32029 mmap(0x3ff3e17000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x3ff3e17000 32029 mmap(0x3ff3e19000, 13216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3ff3e19000 32029 close(3) = 0 32029 open("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/.libs/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/usr/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory) 32029 open("/lib64/libc.so.6", O_RDONLY) = 3 32029 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\356\201\363?\0\0\0"..., 832) = 832 32029 fstat(3, {st_mode=S_IFREG|0755, st_size=1877792, ...}) = 0 32029 mmap(0x3ff3800000, 3696808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3ff3800000 32029 mprotect(0x3ff397d000, 2097152, PROT_NONE) = 0 32029 mmap(0x3ff3b7d000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d000) = 0x3ff3b7d000 32029 mmap(0x3ff3b82000, 18600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3ff3b82000 32029 close(3) = 0 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693d000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693c000 32029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1fc693b000 32029 arch_prctl(ARCH_SET_FS, 0x7f1fc693c700) = 0 32029 mprotect(0x3ff3b7d000, 16384, PROT_READ) = 0 32029 mprotect(0x3ff3e17000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff4682000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff4202000, 4096, PROT_READ) = 0 32029 mprotect(0x3ff3620000, 4096, PROT_READ) = 0 32029 munmap(0x7f1fc693f000, 95054) = 0 32029 set_tid_address(0x7f1fc693c9d0) = 32029 32029 set_robust_list(0x7f1fc693c9e0, 0x18) = 0 32029 futex(0x7fff9248ff8c, FUTEX_WAKE_PRIVATE, 1) = 0 32029 futex(0x7fff9248ff8c, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7f1fc693c700) = -1 EAGAIN (Resource temporarily unavailable) 32029 rt_sigaction(SIGRTMIN, {0x3ff3c05b10, [], SA_RESTORER|SA_SIGINFO, 0x3ff3c0f960}, NULL, 8) = 0 32029 rt_sigaction(SIGRT_1, {0x3ff3c05ba0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x3ff3c0f960}, NULL, 8) = 0 32029 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 32029 getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0 32029 brk(0) = 0x95f000 32029 brk(0x980000) = 0x980000 32029 --- SIGSEGV (Segmentation fault) @ 0 (0) --- 32022 <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV && WCOREDUMP(s)}], 0, NULL) = 32029 32022 --- SIGCHLD (Child exited) @ 0 (0) --- 32022 rt_sigreturn(0xffffffff) = 32029 32022 write(2, "make[4]: ", 9) = 9 32022 write(2, "*** [xsrc/precomp.h] Segmentatio"..., 53) = 53 32022 write(2, "\n", 1) = 1 32022 stat("xsrc/precomp.h", 0x7fff3902fa70) = -1 ENOENT (No such file or directory) 32022 rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0 32022 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 32022 chdir("/home/gene/packages/plt-scheme/plt-4.2.5/src/build/mzscheme/gc2") = 0 32022 write(1, "make[4]: Leaving directory `/hom"..., 93) = 93 32022 close(1) = 0

#283 incorrect `declare-exporting' dherman defect major dherman/types.plt

Reported by anonymous, 15 years ago.

description

The `declare-exporting' line at the beginning of types.scrbl is @declare-exporting[(planet dherman/types:1)] but should be @declare-exporting[(planet dherman/types:2)]

#285 Fails to compile dherman defect major dherman/javascript.plt

Reported by Sam TH, 15 years ago.

description

Error is: only-in: identifier `language/macro-stepper<%>' not included in nested require spec

#290 compile: unbound identifier in module robby enhancement major some _default-component

Reported by anonymous, 15 years ago.

description

for jaymccarthy > hash-store.plt > package version 1.4

--- #lang scheme/gui (require (planet "hash-store.ss" ("jaymccarthy" "hash-store.plt" 1 4))) (SHA1 #"JH LKJH LHJKLKJHKL HJLJKHK JHKLHKLJHKJ")

compile: unbound identifier in module setup-plt: error: during making for <planet>/jaymccarthy/hash-store.plt/1/4 (Hash Store) setup-plt: compile: unbound identifier in module . Users/spdegabrielle/Library/PLT Scheme/planet/300/4.1.1/cache/jaymccarthy/hash-store.plt/1/4/hash-store.ss:9:3: expand: unbound identifier in module in: base64-filename-safe

Gregory,  Geologist.

#292 png_set_gray_1_2_4_to_8 not found while compiling robby defect major _default-component

Reported by petraszd, 15 years ago.

description

src/wxcommons/src/wxcommon/wxJPEG.cxx

wx_read_png function 729 line.

My computer:

OpenSuse? 11.3 libpng 1.4.3

I have solve problem by changing that line from:

png_set_gray_1_2_4_to_8(png_ptr);

to:

png_set_expand_gray_1_2_4_to_8(png_ptr);

Works for me, but I am not sure if it works for everyone.

#297 enhance define-datatype to handle #:property prop:equal+hash dherman enhancement major dherman/types.plt

Reported by anonymous, 15 years ago.

description

Hi Dave,

I'm very fond of your define-datatype macro as it enables me to create abstract datatypes. Unfortunately I have to implement #:property prop:equal+hash in some cases where I use define-datatype. Would it be possible to enhance the macro for that?

BTW I'm not sure if it's ok to create a ticket for this; it seemed better than writing a private mail.

Many thanks in any case Sigrid

#299 Cannot typecheck (equal? (list) (list)) krhari defect major krhari/pfds.plt

Reported by dvanhorn, 15 years ago.

description

With regular lists, (equal? (list) (list)) can be type checked, but not with random-access lists.

Welcome to DrRacket, version 5.0.1.3--2010-08-25(-/f) [3m].
Language: typed/racket; memory limit: 512 MB.
> (equal? (list) (list))
- : Boolean
#t
> (require (planet krhari/pfds:1:4/skewbinaryrandomaccesslist))
> (equal? (list) (list))
. Type Checker: Could not infer types for applying polymorphic function list
 in: (list)
. Type Checker: Could not infer types for applying polymorphic function list
 in: (list)
. Type Checker: Could not infer types for applying polymorphic function list
 in: (list)
. Type Checker: Could not infer types for applying polymorphic function list
 in: (list)
. Type Checker: Summary: 4 errors encountered in:
  (list)
  (list)
  (list)
  (list)
#302 define/memo doesn't save time for funs of arity > 1 dherman defect major dherman/memoize.plt

Reported by clements@…, 15 years ago.

description

It appears that define/memo is missing all of the time for functions of more than one argument. Here's a version of fib that takes 2 (identical) arguments:

#lang racket

(require (planet dherman/memoize))

(define/memo (fib n1 n2)

(if (<= n2 1) 1 (+ (fib (- n1 1) (- n2 1)) (fib (- n1 2) (- n2 2)))))

(time (fib 28 28))

This program runs faster without memoization; it appears that the cache check always misses.

#319 current-print is inactive neil enhancement major neil/sicp.plt

Reported by bsniffen@…, 14 years ago.

description

Several of the SICP exercises expect current-print to be set up---they emphasize that expressions have values whether or not the programmer uses explicit output with (display) or (write). But the sicp package doesn't set up current-print.

#323 (rsound-play ding) does not play in Debian sid clements defect major clements/rsound.plt

Reported by mikeg@…, 14 years ago.

description

I ran the example code from the documentation in DrRacket? but got neither any sound nor error messages. Attempts to play other rsounds have also been in vain. I am running Debian sid, and libportaudio2 version 19+svn20071022-3.2 is installed.

#332 Looks like this language extension is broken on latest version of Racket and PLT-Scheme abromfie defect major abromfie/drocaml.plt

Reported by histfak@…, 14 years ago.

description

Hello. I installed Racket 5.1.1 and drocaml 2.0 extension. After installing drocaml and restarting Racket, application not starting. Popup window contain this error:

send: target is not an object: #<undefined> for method: get-eventspace

context

/Applications/Racket v5.1/collects/racket/private/class-internal.rkt:4487:0: obj-error /Applications/Racket v5.1/collects/racket/private/class-internal.rkt:3751:0: find-method/who /Applications/Racket v5.1/collects/racket/private/more-scheme.rkt:265:2: call-with-exception-handler /Applications/Racket v5.1/collects/framework/private/frame.rkt:348:4: open-status-line method in ...rk/private/frame.rkt:332:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/debugger.ss:251:4: ocaml:reset-minor-debug-highlighting method in ....plt/2/0/debugger.ss:14:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/language.ss:62:4: ocaml:reset-highlighting method in ....plt/2/0/language.ss:46:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/debugger.ss:100:4: ocaml:clean-up method in ....plt/2/0/debugger.ss:14:2 /Users/val/Library/Racket/planet/300/5.1/cache/abromfie/drocaml.plt/2/0/typecheck.ss:84:4: after-insert method in ...plt/2/0/typecheck.ss:15:2 /Applications/Racket v5.1/collects/test-engine/test-tool.scm:63:8: after-insert method in ...engine/test-tool.scm:36:6 /Applications/Racket v5.1/collects/gui-debugger/debug-tool.rkt:236:10: after-insert method in ...ugger/debug-tool.rkt:152:8 /Applications/Racket v5.1/collects/drracket/private/module-language-tools.rkt:85:6: after-insert method in ...e-language-tools.rkt:79:4 /Applications/Racket v5.1/collects/drracket/private/debug.rkt:1033:6: after-insert method in ...et/private/debug.rkt:987:4 /Applications/Racket v5.1/collects/drracket/private/syncheck/gui.rkt:190:10: after-insert method in ...ate/syncheck/gui.rkt:177:8 /Applications/Racket v5.1/collects/framework/private/text.rkt:3882:4: after-insert method in ...ork/private/text.rkt:3723:2 /Applications/Racket v5.1/collects/framework/private/text.rkt:493:4: after-insert method in ...ork/private/text.rkt:79:2 /Applications/Racket v5.1/collects/mred/private/wxme/text.rkt:1244:2: do-insert method in text% ...

Tested on Mac OS 10.6.7 and Windows XP with Racket 5.1.1 and Ocaml 3.12 installed.

PLT-Scheme 4.2.5 works. but I get some ugly errors when I trying to compile or check types.

#338 Error with Racket 5.1.2 and bzlib bzlib defect major bzlib/base.plt

Reported by anonymous, 14 years ago.

description

This is the beginning of my program:

#lang racket

(require net/url

net/mime (lib "match.ss") (planet neil/htmlprag:1:6) (planet bzlib/http/client) (planet lizorkin/sxml:2:1/sxml) (planet jaymccarthy/ sqlite:4:5/sqlite))

and this is the error message I get when I try to start the program under Racket 5.1.2:

...\AppData?\Roaming\Racket\planet\300\5.1.2\cache\bzlib\base.plt\1\6\base.ss:29:9: module: identifier already imported from a different source in:

identity scheme/function mzlib/etc

This problem does not occur with Racket 5.1.1.

#345 socket.plt fails to install vyzo defect major vyzo/socket.plt

Reported by anonymous, 14 years ago.

description

I can't install socket.plt using

(require (planet vyzo/socket:3:2))

Various error messages on redefined macros in wingdi.h and finally

open-input-file: cannot open input file: "C:\...\AppData?\Roaming\Racket\planet\300\5.1.3\cache\vyzo\socket.plt\3\2\_constants.rkt"

#357 Upgrade bindings to the current Cairo release samth defect major samth/cairo.plt

Reported by zio_tom78@…, 14 years ago.

description

The library still uses a number of deprecated names for Cairo functions -- the full list is in "cairo_deprecated.h" ( http://zenit.senecac.on.ca/wiki/dxr/source.cgi/mozilla/gfx/cairo/cairo/src/cairo-deprecated.h). This makes the library unusable on modern systems, because of Racket complaining about symbols not found in ffi-obj.

#363 Hello world doesn't compile dyoo defect major dyoo/js-vm.plt

Reported by james@…, 14 years ago.

description

I tried compiling the basic hello-world tutorial from the docs and got a confusing error.

Here is the source of test.rkt:

#lang planet dyoo/js-vm:1:7
(printf "Hello, world!\n")
(check-expect (* 3 4 5) 60)
(current-seconds)
(image-url "http://racket-lang.org/logo.png")
(check-expect (big-bang 0
                        (on-tick add1 1)
                        (stop-when (lambda (x) (= x 10))))
              10)
"last line"

And the run.rkt which I try to run:

#lang racket
(require (planet "main.rkt" ("dyoo" "js-vm.plt" 1 14)))
(run-in-browser "test.rkt")

And the error I get:

../../.racket/planet/300/5.1.3/cache/dyoo/js-vm.plt/1/14/private/translate-bytecode-structs-5.1.rkt:311:36: match: wrong number for fields for structure internal:provided: expected 6 but got 7 in: (name src src-name nom-mod src-phase protected? insp)
#370 writing comment inserts extra spaces neil defect major neil/html-writing.plt

Reported by ryanc, 14 years ago.

description

xexp->html and write-html insert extra spaces around the contents of a comment.

> (xexp->html '(*COMMENT* "x"))
"<!-- x -->"

but the result should be

"<!--x-->"
#371 Running example code produces no sound evhan defect major evhan/coremidi.plt

Reported by John Clements, 14 years ago.

description

It's entirely possible that this is simply a doc failure, but running the example code given in the documentation does not produce any sound on the main speakers. Is it necessary to hook up the midi channel to an audio unit?

#372 Unbound identifier evanfarrer defect major evanfarrer/SPeaCAP.plt

Reported by robby, 13 years ago.

description

Hello.

I'm running this simple program in DrRacket?:

#lang racket (require (planet evanfarrer/SPeaCAP:1:0/SPeaCAP))

SPeaCAP is correctly download but i get this error:

Welcome to DrRacket?, version 5.2 [3m]. Language: racket; memory limit: 128 MB. . ../../../.racket/planet/300/5.2/cache/evanfarrer/SPeaCAP.plt/1/0/private /security-guard.ss:31:13: expand: unbound identifier in module in: ffi-lib >

#385 compilation error on racket v5.1.3 dherman defect major dherman/parameter.plt

Reported by roti, 13 years ago.

description

Compile error when requiring the package:

../../../../.racket/planet/300/5.1.3/cache/dherman/parameter.plt/1/3/main.ss:26:17: compile: unbound identifier in module in: flat-get

#387 compilation error untyped defect major untyped/mirrors.plt

Reported by roti, 13 years ago.

description

There are some compilation errors when requiring the module.

Code: (require (planet untyped/mirrors:2:4/mirrors))


Error: ..\..\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss:27:5: expand: unbound identifier in module in: make-response/full


Here's the output:

Welcome to DrRacket?, version 5.2 [3m]. Language: racket. module: identifier is already imported module: identifier is already imported raco setup: error: during making for <planet>/cce/scheme.plt/4/1 (Scheme Utilities: (planet cce/scheme)) raco setup: module: identifier is already imported raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cce\scheme.plt\4\1\scribblings\main.scrbl raco setup: module: identifier is already imported WARNING: collected information for key multiple times: '(mod-path "(planet schematics/sake)"); values: '#(#<path:C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\schematics\sake.plt\1\0\doc\sake\Build_files.html> ("Build files") #t (mod-path "(planet schematics/sake)")) '#(#<path:C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\schematics\sake.plt\1\0\doc\sake\The_Sake_API.html> ("The Sake API") #t (mod-path "(planet schematics/sake)")) WARNING: collected information for key multiple times: '(index-entry (mod-path "(planet schematics/sake)")); values: (list '("(planet schematics/sake)") (list (sized-element ...)) #<module-path-index-desc>) (list '("(planet schematics/sake)") (list (sized-element ...)) #<module-path-index-desc>) WARNING: collected information for key multiple times: '(mod-path "(planet schematics/sake)"); values: '#(#<path:C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\schematics\sake.plt\1\0\doc\sake\Build_files.html> ("Build files") #t (mod-path "(planet schematics/sake)")) '#(#<path:C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\schematics\sake.plt\1\0\doc\sake\The_Sake_API.html> ("The Sake API") #t (mod-path "(planet schematics/sake)")) WARNING: collected information for key multiple times: '(index-entry (mod-path "(planet schematics/sake)")); values: (list '("(planet schematics/sake)") (list (sized-element ...)) #<module-path-index-desc>) (list '("(planet schematics/sake)") (list (sized-element ...)) #<module-path-index-desc>) expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/cce/scheme.plt/6/3 (Scheme Utilities: (planet cce/scheme)) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/cce/scheme.plt/6/3/reference raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cce\scheme.plt\6\3\reference\manual.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/unlib.plt/3/24 (Unlib) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/unlib.plt/3/24/scribblings raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\unlib.plt\3\24\scribblings\unlib.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/parameter.plt/1/3 (Parameter) raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\parameter.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2 (JavaScript?) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/drscheme (JavaScript? Language for DrScheme?) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/lang raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/private raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/private/compiler (JavaScript?: Compiler) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/private/runtime (JavaScript?: Runtime) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/private/syntax (JavaScript?: Syntax Tools) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/javascript.plt/9/2/private/tests raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\javascript.scrbl raco setup: expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4 (mirrors) raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/csv raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/javascript raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/javascript/plain raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/javascript/plain/lang raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/javascript/sexp raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/plain raco setup: expand: unbound identifier in module raco setup: error: during making for <planet>/untyped/mirrors.plt/2/4/xml raco setup: expand: unbound identifier in module raco setup: error: during Building docs for C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\mirrors.scrbl raco setup: expand: unbound identifier in module . ..\..\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss:27:5: expand: unbound identifier in module in: make-response/full


And the setup log: PLaneT: unpacking debug-console.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking info.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking module-forms.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking module-forms.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking rhino.png in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking syntax-color.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking syntax-color.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking tool.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking tool.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\drscheme\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking eval.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking exn.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking info.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory lang in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking lang.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking lang.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking module.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking module.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking reader.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking reader.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\lang\ PLaneT: unpacking main.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking pjs.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory javascript in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\ PLaneT: unpacking ast.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking compile.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking config.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking doc-index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking eval.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking intro.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking parse.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking pjs.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking print.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking runtime.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\planet-docs\javascript\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking print.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory compiler in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking compile.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking compile.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking context.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking context.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking helpers.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking helpers.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist-monad.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist-monad.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking hoist.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\compiler\ PLaneT: unpacking config.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking config.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking parameter.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking planet.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking planet.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: making directory runtime in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking exceptions.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking exceptions.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking function.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking gui-library.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking namespace.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking namespace.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking native.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking native.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking object.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking operator.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking operator.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking runtime.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking standard-library.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking standard-library.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking value.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: unpacking value.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\runtime\ PLaneT: making directory syntax in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking abstract-regexps.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-core.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-core.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-utils.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking ast-utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking cursor.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking cursor.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking exceptions.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking exceptions.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking input.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking input.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking lex.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking lex.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking regexps.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking regexps.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking syntax.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking syntax.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking token.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking token.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: unpacking tokenize.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\syntax\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\ PLaneT: unpacking arguments-scope.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking array.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking array.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking eval.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example1.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example2.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking example3.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking parse.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking pretty-print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking pretty-print.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking test.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking test.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking util.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking util.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\private\tests\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking runtime.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: making directory scribblings in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: unpacking ast.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking ast.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking compile.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking compile.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking config.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking config.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking eval.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking eval.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking history.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking history.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking intro.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking intro.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking javascript.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking javascript.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking parse.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking parse.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking pjs.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking print.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking print.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking runtime.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking runtime.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking utils.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\scribblings\ PLaneT: unpacking snarl.bak in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\.\ PLaneT: PLaneT: ============= Installing javascript.plt on Sat, 24 Dec 2011 19:11:16 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2 (JavaScript?) PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: downloading cobbe/contract-utils:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking contract-utils.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\cobbe\contract-utils.plt\1\3\contract-utils.plt PLaneT: unpacking changes.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking contract-utils.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking COPYING in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\.\ PLaneT: PLaneT: ============= Installing contract-utils.plt on Sat, 24 Dec 2011 19:11:19 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/cobbe/contract-utils.plt/1/3 (contract-utils) PLaneT: raco setup: in <planet>/cobbe/contract-utils.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\contract-utils.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\contract-utils.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\cobbe\contract-utils.plt\1\3\info.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-core.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-core.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: downloading dherman/parameter:1 from planet.racket-lang.org via HTTP cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: PLaneT: ============= Unpacking parameter.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\parameter.plt\1\3\parameter.plt PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: unpacking parameter.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\ PLaneT: making directory parameter in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\.\planet-docs\parameter\ PLaneT: PLaneT: ============= Installing parameter.plt on Sat, 24 Dec 2011 19:11:28 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/parameter.plt/1/3 (Parameter) PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/parameter.plt/1/3/planet-docs PLaneT: raco setup: making: <planet>/dherman/parameter.plt/1/3/planet-docs/parameter PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: <planet>/untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: running: <planet>/dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/collects cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/drscheme (JavaScript? Language for DrScheme?) PLaneT: downloading dherman/widgets:2 from planet.racket-lang.org via HTTP PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/drscheme cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\debug-console.ss PLaneT: PLaneT: ============= Unpacking widgets.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\widgets.plt\2\0\widgets.plt PLaneT: making directory bitmaps in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking ne.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking nw.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking se.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking sw.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-large.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-medium.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking tick-small.bmp in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\bitmaps\ PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\private\ PLaneT: unpacking progress.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\private\tests\ PLaneT: unpacking progress.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking text.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: unpacking widgets.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\.\ PLaneT: PLaneT: ============= Installing widgets.plt on Sat, 24 Dec 2011 19:11:47 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/widgets.plt/2/0 (widgets) PLaneT: raco setup: in <planet>/dherman/widgets.plt/2/0 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\progress.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\progress.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\text.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\text.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\widgets.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\widgets.ss PLaneT: raco setup: making: <planet>/dherman/widgets.plt/2/0/bitmaps PLaneT: raco setup: making: <planet>/dherman/widgets.plt/2/0/private PLaneT: raco setup: making: <planet>/dherman/widgets.plt/2/0/private/tests PLaneT: raco setup: in <planet>/dherman/widgets.plt/2/0/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\private\tests\progress.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\widgets.plt\2\0\private\tests\progress.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\debug-console.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\module-forms.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\module-forms.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\drscheme\syntax-color.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\regexps.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\abstract-regexps.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\abstract-regexps.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/lang PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/lang PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\lang\lang.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\context.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/planet-docs cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/planet-docs/javascript PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/private/compiler (JavaScript?: Compiler) PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\compile.ss PLaneT: downloading soegaard/evector:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking evector.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\soegaard\evector.plt\1\1\evector.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking evector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking extensible-vector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking extensible-vector.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking srfi-check.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: unpacking test-evector.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\.\ PLaneT: PLaneT: ============= Installing evector.plt on Sat, 24 Dec 2011 19:12:20 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/soegaard/evector.plt/1/1 (Extensible Vectors) PLaneT: raco setup: in <planet>/soegaard/evector.plt/1/1 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\evector.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\extensible-vector.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\extensible-vector.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\evector.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\srfi-check.scm PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\soegaard\evector.plt\1\1\srfi-check.scm PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/private/runtime (JavaScript?: Runtime) PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/runtime cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\exceptions.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\exceptions.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\gui-library.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\value.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/private/syntax (JavaScript?: Syntax Tools) PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/private/tests PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\tests\array.ss PLaneT: downloading dherman/test:2 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking test.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\test.plt\2\1\test.plt PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: unpacking main.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory planet-docs in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory test in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\ PLaneT: unpacking index.html in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: unpacking scribble-common.js in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: unpacking scribble.css in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\planet-docs\test\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\private\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\private\tests\ PLaneT: unpacking test.scrbl in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\.\ PLaneT: PLaneT: ============= Installing test.plt on Sat, 24 Dec 2011 19:12:43 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/test.plt/2/1 (test) PLaneT: raco setup: in <planet>/dherman/test.plt/2/1 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\main.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\test.scrbl PLaneT: raco setup: making: <planet>/dherman/test.plt/2/1/planet-docs cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\test.scrbl PLaneT: raco setup: making: <planet>/dherman/test.plt/2/1/planet-docs/test PLaneT: raco setup: making: <planet>/dherman/test.plt/2/1/private PLaneT: raco setup: making: <planet>/dherman/test.plt/2/1/private/tests PLaneT: raco setup: in <planet>/dherman/test.plt/2/1/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\2\1\private\tests\tests.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: running: <planet>/dherman/test.plt/2/1/test.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: <planet>/untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: <planet>/dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: rendering: <planet>/dherman/test.plt/2/1/test.scrbl PLaneT: downloading dherman/io:1 from planet.racket-lang.org via HTTP PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: PLaneT: ============= Unpacking io.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\io.plt\1\9\io.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking file.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: unpacking io.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\ PLaneT: making directory examples in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking big.zip in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\examples\ PLaneT: unpacking file.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking foofaraw.scm in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking io.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\.\private\tests\ PLaneT: PLaneT: ============= Installing io.plt on Sat, 24 Dec 2011 19:13:11 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/io.plt/1/9 (io) PLaneT: raco setup: in <planet>/dherman/io.plt/1/9 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\file.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\file.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\io.ss PLaneT: raco setup: making: <planet>/dherman/io.plt/1/9/private cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\io.ss PLaneT: raco setup: making: <planet>/dherman/io.plt/1/9/private/tests PLaneT: raco setup: in <planet>/dherman/io.plt/1/9/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\file.ss PLaneT: downloading dherman/test:1 from planet.racket-lang.org via HTTP PLaneT: PLaneT: ============= Unpacking test.plt ============= PLaneT: Unpacking archive from C:\Documents and Settings\razvan\Application Data\Racket\planet\300\packages\dherman\test.plt\1\3\test.plt PLaneT: unpacking doc.txt in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: unpacking info.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: making directory private in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: making directory tests in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\private\ PLaneT: unpacking tests.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\private\tests\ PLaneT: unpacking test.ss in C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\.\ PLaneT: PLaneT: ============= Installing test.plt on Sat, 24 Dec 2011 19:13:22 ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: <planet>/dherman/test.plt/1/3 (test) PLaneT: raco setup: in <planet>/dherman/test.plt/1/3 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\info.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\info.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\test.ss PLaneT: raco setup: making: <planet>/dherman/test.plt/1/3/private cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\test.ss PLaneT: raco setup: making: <planet>/dherman/test.plt/1/3/private/tests PLaneT: raco setup: in <planet>/dherman/test.plt/1/3/private/tests cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\test.plt\1\3\private\tests\tests.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\file.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\foofaraw.scm cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\foofaraw.scm cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\io.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\io.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\tests.ss PLaneT: raco setup: making: <planet>/dherman/io.plt/1/9/private/tests/examples cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\io.plt\1\9\private\tests\tests.ss PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/runtime cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\runtime.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\runtime.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\runtime\operator.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: <planet>/dherman/javascript.plt/9/2/scribblings cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/scribblings cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\utils.ss PLaneT: raco setup: --- updating info-domain tables --- cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\scribblings\utils.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: running: <planet>/dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: <planet>/untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: <planet>/dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/javascript/plain cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\plain\module.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript/plain PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\javascript.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander-internal.ss cm: |compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander-internal.ss cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\expander.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\lang.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util-internal.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/javascript/plain/lang cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\plain\lang\reader.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript/plain/lang PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/compiler cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\compiler\compile.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/javascript/sexp cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\module-test.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript/sexp PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\javascript.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\lang.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op-util-internal.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\op.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/javascript/sexp/lang cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\lang\reader.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript/sexp/lang cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\sexp\lang\reader.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/plain cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\plain\all-plain-tests.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/plain cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\plain\response-test.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4 cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\main.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/csv cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\csv.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\csv\response.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/planet-docs PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/planet-docs/mirrors PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/scribblings cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\base.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/scribblings cm: compiled C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\scribblings\base.ss PLaneT: raco setup: making: <planet>/untyped/mirrors.plt/2/4/xml cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\all-xml-tests.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/xml cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\render-test.ss cm: compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\syntax-prerender.ss cm: |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\struct.ss cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\xml\struct-internal.ss PLaneT: raco setup: in <planet>/untyped/mirrors.plt/2/4/javascript cm: | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\untyped\mirrors.plt\2\4\javascript\struct.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2 cm: | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\ast.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private/syntax cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\syntax\ast-utils.ss PLaneT: raco setup: in <planet>/dherman/javascript.plt/9/2/private PLaneT: raco setup: in <planet>/dherman/parameter.plt/1/3 cm: | | compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\javascript.plt\9\2\private\config.ss PLaneT: raco setup: --- updating info-domain tables --- cm: | | |compiling C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache\dherman\parameter.plt\1\3\main.ss PLaneT: raco setup: updating: C:\Documents and Settings\razvan\Application Data\Racket\planet\300\5.2\cache.rktd PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: <planet>/dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: <planet>/untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: <planet>/dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: running: <planet>/untyped/mirrors.plt/2/4/scribblings/mirrors.scrbl PLaneT: raco setup: skipping: scribblings/main/user/start.scrbl PLaneT: raco setup: skipping: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections --- PLaneT: raco setup: PLaneT: PLaneT: ============= Rebuilding documentation index ============= PLaneT: raco setup: version: 5.2 [3m] PLaneT: raco setup: variants: 3m PLaneT: raco setup: main collects: C:\Program Files\Racket\collects PLaneT: raco setup: collects paths: PLaneT: raco setup: C:\Documents and Settings\razvan\Application Data\Racket\5.2\collects PLaneT: raco setup: C:\Program Files\Racket\collects PLaneT: raco setup: --- pre-installing collections --- PLaneT: raco setup: --- compiling collections --- PLaneT: raco setup: making: scribblings/main/user PLaneT: raco setup: --- updating info-domain tables --- PLaneT: raco setup: --- creating launchers --- PLaneT: raco setup: --- building documentation --- PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/4/1/scribblings/main.scrbl PLaneT: raco setup: skipping: <planet>/dherman/javascript.plt/9/2/scribblings/javascript.scrbl PLaneT: raco setup: skipping: <planet>/untyped/unlib.plt/3/24/scribblings/unlib.scrbl PLaneT: raco setup: skipping: <planet>/dherman/parameter.plt/1/3/parameter.scrbl PLaneT: raco setup: skipping: <planet>/cce/scheme.plt/6/3/reference/manual.scrbl PLaneT: raco setup: skipping: <planet>/untyped/mirrors.plt/2/4/scribblings/mirrors.scrbl PLaneT: raco setup: running: scribblings/main/user/start.scrbl PLaneT: raco setup: running: scribblings/main/user/search.scrbl PLaneT: raco setup: rendering: scribblings/main/user/start.scrbl PLaneT: raco setup: rendering: scribblings/main/user/search.scrbl PLaneT: raco setup: --- installing collections --- PLaneT: raco setup: --- post-installing collections ---

#409 Negative numbers unsupported jeeve defect major jeeve/live.plt

Reported by jvjulien@…, 13 years ago.

description

live-web-number function don't return negative numbers. Of same for plotting functions.

#411 Growing memory consumption when using ryanc/db.plt ryanc defect major ryanc/db.plt

Reported by yvesf-racket@…, 13 years ago.

description

I experience Memory Leaks while using db.plt with postgresql.

Checked using racket 5.2 on FreeBSD and Racket 5.1.3 on Debian wheezy.

Test-Program:

#lang racket/base
(require (prefix-in db: (planet ryanc/db:1:4)))

(define pgc
     (db:postgresql-connect
       #:user "ebus" #:database "ebus" #:password "ebus" #:socket "/tmp/.s.PGSQL.5432"));; or #:server - no difference

(define (pgc-test)
      (db:query-value pgc "SELECT 1"))

(let loop ()
      (let ([x (pgc-test)])
              (loop)))

Memory usage grows with the number of database querys (more querys -> grows faster) until the process die.

As a workaround i'm using synx/libpq right now, but i would db.plt because it looks more mature and uses the postgresql wire-protocol instead of FFI bindings.

---

Another smaller issue i ran into: FreeBSD is not marked as a supported platform for socket-connections.

#415 bug in firmata.scrbl xtofs defect major xtofs/firmata.plt

Reported by ozzloy@…, 13 years ago.

description

i just tried running this:

#lang racket (require (planet xtofs/firmata:1:0/firmata))

and i got this:

defproc: duplicate argument names in prototype for set-pin-mode!: (number? number?) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/xtofs/firmata.plt/1/0/firmata.scrbl raco setup: defproc: duplicate argument names in prototype for set-pin-mode!: (number? number?)

i'm on ubuntu 11.10 64 bit

#421 static-page won't load for 5.2.1 dherman defect major dherman/static-page.plt

Reported by heap@…, 13 years ago.

description

A new problem report is waiting at   http://bugs.racket-lang.org/query/?cmd=view&pr=12770 Reported by Danny Heap for release: 5.2.1 *** Description: The require statement from the documentation doesn't install the package. #lang racket (require (planet dherman/static-page:1:0)) ; produces... expand: unbound identifier in module expand: unbound identifier in module raco setup: error: during making for <planet>/dherman/static-page.plt/1/0 (static-page) raco setup:   expand: unbound identifier in module raco setup: error: during Building docs for /home/heap/.racket/planet/300/5.2.1/cache/dherman/static-page.plt/1/0/static-page.scrbl raco setup:   expand: unbound identifier in module . .racket/planet/300/5.2.1/cache/dherman/static-page.plt/1/0/main.ss:44:15: expand: unbound identifier in module in: normalize-response

*** Environment: unix "Linux heap-laptop 2.6.32-41-generic #88-Ubuntu SMP Thu Mar 29 13:08:43 UTC 2012 i686 GNU/Linux" (i386-linux/3m) (get-display-depth) = 32 Human Language: english (current-memory-use) 173484460 Links: (links) = (); (links #:user? #f) = (); (links #:root? #t) = (); (links #:user? #f #:root? #t) = () Collections: ("/home/heap/.racket/5.2.1/collects"  ("info-domain" "cpsc110-shared-buffer")) ("/usr/local/racket/collects"  ("info-domain" "macro-debugger" "stepper" "picturing-programs" "typed-scheme" "mred" "mysterx" "compiler" "r6rs" "mzcom" "slatex" "unstable" "trace" "raco" "texpict" "config" "html"

+"schemeunit" "gui-debugger" "redex" "2htdp" "net" "combinator-parser" "reader" "frtime" "db" "tex2page" "openssl" "racklog" "planet" "scribble" "htdp" "teachpack" "datalog" "s-exp" +"file" "algol60" "mrlib" "syntax" "rnrs" "test-engine" "slideshow" "xrepl" "make" "plot" "mzscheme" "scheme" "string-constants" "eopl" "images" "embedded-gui" "rackunit" "version" +"test-box-recovery" "racket" "r5rs" "lazy" "mzlib" "typed" "browser" "plai" "srfi" "swindle" "drracket" "launcher" "deinprogramm" "dynext" "lang" "games" "scribblings" "web-server" +"at-exp" "errortrace" "ffi" "scriblib" "sgl" "hierlist" "help" "icons" "data" "defaults" "xml" "typed-racket" "preprocessor" "syntax-color" "setup" "drscheme" "wxme" "framework" +"parser-tools" "profile" "readline" "graphics"))

Computer Language: (("Determine language from source") (#(#t print mixed-fraction-e #f #t debug) (default) #() "#lang racket\n" #t #t))

#427 Subquotes break the csv-reader neil defect major neil/csv.plt

Reported by ebellani@…, 13 years ago.

description

Something like DATUM1|DATUM2 "A \"X\""|123

breaks the reader with the message: %csv:make-portreader/positional: Junk after close of quoted field: #\X

#433 install complains soegaard defect major soegaard/sicp.plt

Reported by ozzloy, 13 years ago.

description

Welcome to DrRacket?, version 5.2.1 [3m]. Language: R5RS; memory limit: 128 MB. include: read error (read: illegal use of open square bracket) free-identifier=?: expects type <identifier syntax> as 2nd argument, given: #<syntax:/home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl:9:30 "soegaard">; other arguments were: #<syntax unsyntax> raco setup: error: during making for <planet>/soegaard/sicp.plt/2/1 (SICP) raco setup: include: read error (read: illegal use of open square bracket) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl raco setup: free-identifier=?: expects type <identifier syntax> as 2nd argument, given: #<syntax:/home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl:9:30 "soegaard">; other arguments were: #<syntax unsyntax> include: read error (read: illegal use of open square bracket) raco setup: error: during making for <planet>/neil/sicp.plt/1/16 (SICP) raco setup: include: read error (read: illegal use of open square bracket)

i've still been able to do the first section  http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_sec_1.1

i got this when installing with these instructions http://planet.racket-lang.org/package-source/neil/sicp.plt/1/16/planet-docs/sicp/index.html#(part._installation)

i'm not sure if it's soegaard's or neil's or the combination of the packages.

i tried uninstalling by evaluating (uninstall-sicp). but when i installed again, this error did not happen.

#434 install complains neil defect major neil/sicp.plt

Reported by ozzloy, 13 years ago.

description

Welcome to DrRacket?, version 5.2.1 [3m]. Language: R5RS; memory limit: 128 MB. include: read error (read: illegal use of open square bracket) free-identifier=?: expects type <identifier syntax> as 2nd argument, given: #<syntax:/home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl:9:30 "soegaard">; other arguments were: #<syntax unsyntax> raco setup: error: during making for <planet>/soegaard/sicp.plt/2/1 (SICP) raco setup: include: read error (read: illegal use of open square bracket) raco setup: error: during Building docs for /home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl raco setup: free-identifier=?: expects type <identifier syntax> as 2nd argument, given: #<syntax:/home/ozzloy/.racket/planet/300/5.2.1/cache/soegaard/sicp.plt/2/1/sicp-manual.scrbl:9:30 "soegaard">; other arguments were: #<syntax unsyntax> include: read error (read: illegal use of open square bracket) raco setup: error: during making for <planet>/neil/sicp.plt/1/16 (SICP) raco setup: include: read error (read: illegal use of open square bracket)

i've still been able to do the first section  http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_sec_1.1

i got this when installing with these instructions http://planet.racket-lang.org/package-source/neil/sicp.plt/1/16/planet-docs/sicp/index.html#(part._installation)

i'm not sure if it's soegaard's or neil's or the combination of the packages.

i tried uninstalling by evaluating (uninstall-sicp). but when i installed again, this error did not happen.

#449 JSON parser incorrectly parses '[' with newline and then ']' dherman defect major dherman/json.plt

Reported by wjak56@…, 13 years ago.

description

The following JSON fails to parse with "read: expected: digits, got: ]"

[
{ "a" : {
    "b": [
]}}]

The following succeeds in parsing:

[
{ "a" : {
    "b": []}}]

So I'm guessing that the newline after the '[' is causing this (at least that's what my test case suggests). I've checked with a couple JSON validators (jsonlint.com being one) and this is indeed valid JSON (discovered from the blip.tv API if you're curious).

#450 stty on mac doesn't support -F neil defect major neil/charterm.plt

Reported by zarcher, 13 years ago.

description

On the mac, the stty command uses -f instead of -F as the option to specify the device. Actually, both of these forms are not standard posix which only supports stty operating on the stdin device.

#467 Doc bug in csv->list applied to a string neil defect major neil/csv.plt

Reported by clements@…, 13 years ago.

description

The documentation suggests that (csv->list "abc") is equivalent to (csv->list (make-csv-reader (open-input-string "abc"))). However, it appears that csv->list called with a string actually parses the string as a csv-encoded value, rather than opening the file. I think the current behavior is reasonable, but it should be documented.

#470 can't bind commands to capital letters divascheme defect major divascheme/divascheme.plt

Reported by dpercy@…, 13 years ago.

description

Commands bound to shifted letters, such as Shift+B (push), Shift+M (unmark), and Shift+H (holder), insert a capital letter instead of running the command. As a temporary workaround I've changed my keybindings to use Meta+B, Meta+M, and g for these 3 commands. (Meta+H conflicts with "Help" in the menu bar.)

If this isn't easily fixed it would be nice to at least change the default keybindings.

#487 i need rosetta aml defect major aml/rosetta.plt

Reported by vasco_garcia_@…, 13 years ago.

description

i need rosetta

#490 Unable to install neil defect major neil/csv.plt

Reported by simon.haines@…, 13 years ago.

description

Module installation becomes stuck re-rendering scribblings/main/user/start.scrbl and scribblings/main/user/search.scrbl

Installation output: [snip] PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,711K(+9,944K)[+33,704K]; free 41,832K(-26,728K) 717ms @ 339333 GC[0:min] @ 292,793K(+5,702K)[+33,684K]; free 29,825K(-31,169K) 31ms @ 340175 GC[0:min] @ 298,487K(+4,680K)[+33,684K]; free 21,606K(-32,486K) 47ms @ 340331 GC[0:min] @ 310,978K(+4,925K)[+33,684K]; free 26,410K(-32,170K) 63ms @ 340518 GC[0:min] @ 320,589K(+4,850K)[+33,684K]; free 26,536K(-32,488K) 63ms @ 340721 GC[0:min] @ 327,820K(+5,107K)[+33,684K]; free 28,490K(-32,202K) 47ms @ 340893 GC[0:MAJ] @ 307,153K(+30,190K)[+33,696K]; free 47,283K(-6,323K) 734ms @ 340986 PLaneT: raco setup: re-rendering: scribblings/main/user/search.scrbl GC[0:MAJ] @ 293,770K(+5,365K)[+33,692K]; free 33,237K(-31,253K) 733ms @ 341860 GC[0:min] @ 295,134K(+4,513K)[+33,680K]; free 29,096K(-32,296K) 32ms @ 342702 GC[0:min] @ 302,471K(+4,856K)[+33,680K]; free 22,707K(-32,051K) 62ms @ 342874 GC[0:min] @ 313,944K(+5,415K)[+33,680K]; free 28,197K(-31,653K) 47ms @ 343077 GC[0:min] @ 320,368K(+4,943K)[+33,680K]; free 28,986K(-32,250K) 47ms @ 343233 GC[0:min] @ 324,842K(+4,693K)[+33,684K]; free 30,225K(-32,529K) 78ms @ 343467 GC[0:min] @ 328,279K(+4,456K)[+33,704K]; free 32,509K(-32,765K) 62ms @ 343701 GC[0:min] @ 328,599K(+4,456K)[+33,704K]; free 32,170K(-32,746K) 47ms @ 343919 GC[0:min] @ 329,195K(+4,436K)[+33,704K]; free 32,029K(-32,797K) 47ms @ 344122 GC[0:min] @ 329,932K(+4,467K)[+33,704K]; free 32,128K(-32,768K) 47ms @ 344325 GC[0:min] @ 330,697K(+4,598K)[+33,704K]; free 32,154K(-32,730K) 47ms @ 344512 GC[0:min] @ 331,309K(+4,562K)[+33,704K]; free 32,082K(-32,850K) 62ms @ 344715 GC[0:min] @ 331,992K(+4,647K)[+33,704K]; free 32,056K(-32,696K) 47ms @ 344933 GC[0:min] @ 332,701K(+4,578K)[+33,704K]; free 32,055K(-32,759K) 47ms @ 345136 GC[0:min] @ 333,668K(+4,699K)[+33,704K]; free 32,079K(-32,783K) 47ms @ 345323 GC[0:min] @ 334,351K(+4,720K)[+33,704K]; free 32,099K(-32,803K) 47ms @ 345526 GC[0:min] @ 335,017K(+4,758K)[+33,704K]; free 32,144K(-32,784K) 47ms @ 345729 GC[0:min] @ 335,639K(+4,776K)[+33,704K]; free 32,111K(-32,751K) 47ms @ 345932 GC[0:min] @ 336,292K(+4,763K)[+33,704K]; free 32,175K(-32,687K) 47ms @ 346119 GC[0:min] @ 336,883K(+4,684K)[+33,704K]; free 32,316K(-32,828K) 31ms @ 346291 GC[0:min] @ 337,333K(+4,746K)[+33,704K]; free 32,359K(-32,743K) 16ms @ 346462 GC[0:min] @ 337,740K(+4,723K)[+33,704K]; free 32,243K(-32,755K) 47ms @ 346618 GC[0:min] @ 338,263K(+4,712K)[+33,704K]; free 32,104K(-32,744K) 47ms @ 346821 GC[0:min] @ 339,437K(+4,818K)[+33,704K]; free 32,067K(-32,771K) 47ms @ 347039 GC[0:min] @ 340,136K(+4,823K)[+33,704K]; free 32,108K(-32,812K) 47ms @ 347242 GC[0:min] @ 340,794K(+4,869K)[+33,704K]; free 32,110K(-32,750K) 47ms @ 347445 GC[0:min] @ 341,449K(+4,854K)[+33,704K]; free 32,086K(-32,790K) 47ms @ 347648 GC[0:min] @ 342,129K(+4,878K)[+33,704K]; free 32,075K(-32,779K) 62ms @ 347851 GC[0:min] @ 342,820K(+4,891K)[+33,704K]; free 32,113K(-32,753K) 47ms @ 348069 GC[0:min] @ 343,471K(+4,880K)[+33,704K]; free 32,126K(-32,830K) 47ms @ 348256 GC[0:min] @ 344,111K(+4,944K)[+33,704K]; free 32,061K(-32,765K) 47ms @ 348459 GC[0:min] @ 344,814K(+4,945K)[+33,704K]; free 32,117K(-32,757K) 47ms @ 348662 GC[0:min] @ 345,463K(+4,936K)[+33,704K]; free 32,095K(-32,735K) 47ms @ 348849 GC[0:min] @ 346,134K(+4,905K)[+33,704K]; free 32,093K(-32,797K) 47ms @ 349052 GC[0:min] @ 346,806K(+4,937K)[+33,704K]; free 32,112K(-32,816K) 62ms @ 349239 GC[0:min] @ 347,460K(+4,987K)[+33,704K]; free 32,098K(-32,674K) 47ms @ 349457 GC[0:min] @ 348,118K(+4,905K)[+33,704K]; free 32,155K(-32,795K) 62ms @ 349645 GC[0:min] @ 348,729K(+4,934K)[+33,704K]; free 32,118K(-32,758K) 62ms @ 349832 GC[0:min] @ 350,388K(+5,068K)[+33,704K]; free 32,089K(-32,793K) 62ms @ 350066 GC[0:min] @ 351,064K(+5,095K)[+33,704K]; free 32,100K(-32,740K) 62ms @ 350269 GC[0:min] @ 352,050K(+5,069K)[+33,708K]; free 31,150K(-32,814K) 47ms @ 350471 GC[0:MAJ] @ 323,011K(+35,836K)[+33,716K]; free 55,465K(-745K) 717ms @ 350534 PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,815K(+9,904K)[+33,704K]; free 41,794K(-26,690K) 718ms @ 351641 GC[0:min] @ 292,963K(+5,596K)[+33,684K]; free 29,854K(-31,198K) 32ms @ 352499 GC[0:min] @ 298,618K(+4,613K)[+33,684K]; free 21,572K(-32,516K) 47ms @ 352640 GC[0:min] @ 311,135K(+4,896K)[+33,684K]; free 26,429K(-32,189K) 62ms @ 352827 GC[0:min] @ 320,739K(+4,828K)[+33,684K]; free 26,539K(-32,491K) 47ms @ 353014 GC[0:min] @ 327,965K(+5,090K)[+33,684K]; free 28,518K(-32,166K) 63ms @ 353170 GC[0:MAJ] @ 307,270K(+30,137K)[+33,696K]; free 47,473K(-6,385K) 733ms @ 353311 PLaneT: raco setup: re-rendering: scribblings/main/user/search.scrbl GC[0:MAJ] @ 293,696K(+5,375K)[+33,692K]; free 33,037K(-31,245K) 717ms @ 354200 GC[0:min] @ 295,259K(+4,516K)[+33,680K]; free 29,095K(-32,359K) 47ms @ 355042 GC[0:min] @ 302,368K(+4,895K)[+33,680K]; free 22,480K(-32,080K) 63ms @ 355229 GC[0:min] @ 314,054K(+5,497K)[+33,680K]; free 28,181K(-31,637K) 31ms @ 355432 GC[0:min] @ 320,507K(+4,996K)[+33,680K]; free 28,975K(-32,239K) 46ms @ 355573 GC[0:min] @ 324,993K(+4,734K)[+33,684K]; free 30,258K(-32,562K) 63ms @ 355822 GC[0:min] @ 328,397K(+4,530K)[+33,704K]; free 32,505K(-32,761K) 63ms @ 356056 GC[0:min] @ 328,721K(+4,526K)[+33,704K]; free 32,171K(-32,747K) 62ms @ 356259 GC[0:min] @ 329,316K(+4,507K)[+33,704K]; free 32,032K(-32,736K) 47ms @ 356477 GC[0:min] @ 330,047K(+4,480K)[+33,704K]; free 32,124K(-32,828K) 47ms @ 356680 GC[0:min] @ 330,817K(+4,670K)[+33,704K]; free 32,151K(-32,727K) 47ms @ 356883 GC[0:min] @ 331,432K(+4,631K)[+33,704K]; free 32,082K(-32,722K) 47ms @ 357086 GC[0:min] @ 332,115K(+4,588K)[+33,704K]; free 32,056K(-32,824K) 62ms @ 357289 GC[0:min] @ 332,824K(+4,647K)[+33,704K]; free 32,054K(-32,758K) 47ms @ 357507 GC[0:min] @ 333,791K(+4,768K)[+33,704K]; free 32,081K(-32,785K) 47ms @ 357710 GC[0:min] @ 334,476K(+4,787K)[+33,704K]; free 32,106K(-32,746K) 62ms @ 357897 GC[0:min] @ 335,136K(+4,767K)[+33,704K]; free 32,152K(-32,728K) 47ms @ 358100 GC[0:min] @ 335,748K(+4,731K)[+33,704K]; free 32,109K(-32,813K) 46ms @ 358303 GC[0:min] @ 336,405K(+4,778K)[+33,704K]; free 32,169K(-32,745K) 32ms @ 358505 GC[0:min] @ 337,002K(+4,757K)[+33,704K]; free 32,313K(-32,761K) 31ms @ 358677 GC[0:min] @ 337,455K(+4,752K)[+33,704K]; free 32,349K(-32,797K) 31ms @ 358849 GC[0:min] @ 337,871K(+4,784K)[+33,704K]; free 32,234K(-32,746K) 47ms @ 359020 GC[0:min] @ 338,403K(+4,764K)[+33,704K]; free 32,109K(-32,749K) 47ms @ 359223 GC[0:min] @ 339,572K(+4,875K)[+33,704K]; free 32,067K(-32,771K) 47ms @ 359441 GC[0:min] @ 340,262K(+4,889K)[+33,704K]; free 32,104K(-32,808K) 47ms @ 359644 GC[0:min] @ 340,924K(+4,931K)[+33,704K]; free 32,111K(-32,751K) 47ms @ 359847 GC[0:min] @ 341,579K(+4,916K)[+33,704K]; free 32,087K(-32,727K) 47ms @ 360034 GC[0:min] @ 342,258K(+4,877K)[+33,704K]; free 32,076K(-32,780K) 47ms @ 360237 GC[0:min] @ 342,948K(+4,891K)[+33,704K]; free 32,113K(-32,817K) 62ms @ 360440 GC[0:min] @ 343,601K(+4,942K)[+33,704K]; free 32,129K(-32,769K) 47ms @ 360658 GC[0:min] @ 344,237K(+4,946K)[+33,704K]; free 32,061K(-32,765K) 47ms @ 360861 GC[0:min] @ 344,942K(+4,945K)[+33,704K]; free 32,117K(-32,757K) 47ms @ 361064 GC[0:min] @ 345,591K(+4,936K)[+33,704K]; free 32,094K(-32,798K) 46ms @ 361267 GC[0:min] @ 346,263K(+4,968K)[+33,704K]; free 32,092K(-32,732K) 47ms @ 361469 GC[0:min] @ 346,936K(+4,935K)[+33,704K]; free 32,098K(-32,866K) 47ms @ 361672 GC[0:min] @ 347,598K(+5,041K)[+33,704K]; free 32,094K(-32,670K) 47ms @ 361875 GC[0:min] @ 348,270K(+4,945K)[+33,704K]; free 32,168K(-32,808K) 63ms @ 362062 GC[0:min] @ 348,867K(+4,988K)[+33,704K]; free 32,121K(-32,761K) 46ms @ 362281 GC[0:min] @ 350,536K(+5,111K)[+33,704K]; free 32,102K(-32,742K) 62ms @ 362499 GC[0:min] @ 351,200K(+5,087K)[+33,704K]; free 32,101K(-32,805K) 63ms @ 362686 GC[0:min] @ 352,184K(+5,127K)[+33,708K]; free 31,206K(-32,742K) 47ms @ 362889 GC[0:MAJ] @ 322,066K(+36,845K)[+33,716K]; free 54,439K(+280K) 718ms @ 362967 PLaneT: raco setup: re-rendering: scribblings/main/user/start.scrbl GC[0:MAJ] @ 300,889K(+9,894K)[+33,704K]; free 41,666K(-26,754K) 734ms @ 364121 GC[0:min] @ 293,157K(+5,658K)[+33,684K]; free 29,839K(-31,183K) 47ms @ 364948 GC[0:min] @ 298,838K(+4,649K)[+33,684K]; free 21,555K(-32,499K) 63ms @ 365104 GC[0:min] @ 311,379K(+4,908K)[+33,684K]; free 26,426K(-32,186K) 62ms @ 365307 GC[0:min] @ 320,991K(+4,832K)[+33,684K]; free 26,512K(-32,464K) 47ms @ 365510 GC[0:min] @ 328,244K(+5,067K)[+33,684K]; free 28,566K(-32,214K) 62ms @ 365666 GC[0:MAJ] @ 307,501K(+30,162K)[+33,696K]; free 47,406K(-6,382K) 733ms @ 365791 [snip]

This never terminates. Installation on Racket 5.3 Windows x64.

#500 Request for adding parser combinator "zero" bzlib enhancement major bzlib/parseq.plt

Reported by anonymous, 12 years ago.

description

The library would benefit from having a parser combinator that succeeds if the parser given as a parameter fails. As far as I can tell, the implementation would be:

(define (zero parser)

(lambda (in)

(let-values

(((v in) ((literal parser) in))) ((if (failed? v) (return '()) fail) in))))

#501 Problem finding files - package setup/internal links dherman defect major dherman/network.plt

Reported by khardy, 12 years ago.

description

I cannot get a simple program using the network package to work. There seems to be a problem with the package setup or internal linking of files.

Using:

#lang racket (require (planet dherman/network:1:0/network)) (current-network-adapters)

I get:

open-input-file: cannot open input file

path: c:\home\racketclass\network\windows.rkt system error: The system cannot find the file specified.; errno=2

Using:

#lang racket (require (planet dherman/network:1:0/network)) (require (planet dherman/network:1:0/windows)) (current-network-adapters)

I get:

module: identifier already imported from a different source in:

current-network-adapters (planet dherman/network:1:0/windows) (planet dherman/network:1:0/network)

Using:

#lang racket (require (planet dherman/network:1:0)) (current-network-adapters)

I get: C:\..\snipfile.rkt:324:2: open-input-file: cannot open input file

path: C:\...\cache\dherman\network.plt\1\0\main.rkt system error: The system cannot find the file specified.; errno=2

#505 Implicit passing of monad argument toups enhancement major toups/functional.plt

Reported by Sgeo, 12 years ago.

description

It would be nice if there was a way by which the monad could be passed to mapm and other functions implicitly (within, say, a with-monad form) rather than needing to pass it explicitly.

1 2
Note: See TracQuery for help on using queries.