__color__	__group__	ticket	summary	component	version	type	owner	status	created	_changetime	_description	_reporter
3		2	sample bug	eli/sample-teachpacks.plt		defect	eli	new	2008-08-28T13:03:50-0400	2008-08-28T13:03:50-0400	foo	elibarzilay@…
3		3	fmt uses set-cdr!	ashinn/fmt.plt		defect	ashinn	new	2008-08-28T13:14:18-0400	2008-08-28T13:14:18-0400	fmt.plt 1.0 uses set-cdr! which in PLT 4 doesn't work.	samdphillips@…
3		13	support for v3 and v4	dherman/struct.plt		defect	dherman	new	2008-08-28T13:36:46-0400	2008-08-28T13:37:55-0400	"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!
"	dherman
3		18	stream-split-at	dherman/stream.plt		defect	dherman	new	2008-08-28T13:53:05-0400	2008-08-28T13:53:05-0400	"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.
> 
"	dherman
3		22	stream-partition unusable	dherman/stream.plt		defect	dherman	new	2008-08-28T14:03:22-0400	2008-08-28T14:03:22-0400	"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.)
"	dherman
3		5	API requests	dherman/set.plt		enhancement	dherman	new	2008-08-28T13:17:03-0400	2008-08-28T13:17:03-0400	"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
"	dherman
3		25	make-response/xhtml/full	dherman/xhtml.plt		enhancement	dherman	new	2008-08-28T14:59:43-0400	2008-08-28T14:59:43-0400	"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
"	dherman
2		280	eof error	soegaard/bit-io.plt		defect	soegaard	new	2010-04-18T10:49:17-0400	2010-04-18T10:49:17-0400	"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@vub.ac.be
Vrije Universiteit Brussel"	rik.vanmechelen@…
2		129	audit duplicate-variable errors/non-errors	dherman/javascript.plt		task	dherman	new	2008-11-22T14:51:25-0500	2008-11-22T14:51:25-0500	Things like {{{function(x,x){...}}}} and duplicate imports.	dherman
3		33	make-filter-input-port hopelessly broken	dherman/io.plt		defect	dherman	new	2008-09-03T13:41:54-0400	2008-09-03T13:41:54-0400	The {{{make-filter-input-port}}} procedure is breaking test cases and appears to be hopelessly broken, at least in PLT v4.	dherman
3		35	possible semantic issues with exceptions	dherman/javascript.plt		defect	dherman	new	2008-09-08T12:53:06-0400	2008-09-08T12:53:06-0400	"Need to investigate semantic issues with exceptions:

  * {{{return}}} from {{{finally}}} blocks
  * suspicious uses of {{{dynamic-wind}}}?"	dherman
3		87	Incompatible with mzscheme 4+	daedalus/prometheus.plt		defect	daedalus	new	2008-09-27T12:31:05-0400	2008-09-27T12:31:05-0400	"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"	troelskn@…
3		104	setup fails on hash store; hash-store.plt/1/4/hash-store.ss:9:3: expand: unbound identifier in module in: base64-filename-safe	jaymccarthy/hash-store.plt		defect	eli	assigned	2008-10-15T15:55:31-0400	2010-11-05T20:45:48-0400	"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"	spdegabrielle@…
3		114	Doc warnings	dherman/memoize.plt		defect	dherman	new	2008-10-30T11:34:32-0400	2008-10-30T11:34:32-0400	"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*
"	samth@…
3		120	binding arrows in DrScheme broken	dherman/javascript.plt		defect	dherman	new	2008-11-07T10:40:19-0500	2008-11-07T10:40:19-0500	All the mucking with the implementation of variable binding has broken the DrScheme binding arrows for the JavaScript language level.	dherman
3		127	errors on initial compile	dherman/javascript.plt		defect	dherman	new	2008-11-14T17:58:18-0500	2008-11-14T17:58:18-0500	"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
> 
"	clements
3		130	Use of set-cdr!	untyped/delicious.plt		defect	untyped	accepted	2008-11-23T14:30:30-0500	2008-11-26T06:50:24-0500	This package requires another package that uses set-cdr!	anonymous
3		131	stack trace is often mostly unusable	vegashacker/leftparen.plt		defect	vegashacker	new	2008-11-24T13:48:58-0500	2008-11-24T13:48:58-0500	"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]
}}}"	vegashacker
3		133	Use of {{{set-cdr!}}}	jim/webit.plt		defect	jim	new	2008-11-26T06:49:09-0500	2008-11-26T06:49:09-0500	"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
"	untyped
3		137	Doesn't work in Current Version of PLT	untyped/delicious.plt		defect	untyped	accepted	2008-12-16T09:11:21-0500	2009-01-13T12:43:11-0500	"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"	anonymous
3		138	Doesn't work in Current Version of PLT	untyped/delicious.plt		defect	untyped	new	2008-12-16T09:50:49-0500	2008-12-16T09:50:49-0500	"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"	anonymous
3		139	Doesn't work in Current Version of PLT	untyped/delicious.plt		defect	untyped	new	2008-12-16T09:51:07-0500	2008-12-16T09:51:07-0500	"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"	zitterbewegung@…
3		140	support unicode	kazzmir/peg.plt		defect	kazzmir	new	2008-12-16T18:26:17-0500	2008-12-16T18:26:17-0500	Add some convenient syntax for unicode.	jon
3		147	Planet breakage? Some surprising dependencies from xmlrpc.plt	schematics/xmlrpc.plt		defect	schematics	new	2009-01-15T19:22:53-0500	2009-01-15T19:22:53-0500	"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
"	goetter@…
3		148	Cannot load package in 4.1.4	oesterholt/internat.plt		defect	oesterholt	new	2009-02-08T11:06:52-0500	2009-02-08T11:06:52-0500	"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?

"	anonymous
3		151	_ pattern succeeds on end of input?	kazzmir/peg.plt		defect	kazzmir	new	2009-02-11T18:39:27-0500	2009-02-11T18:39:27-0500	"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.

"	pnkfelix@…
3		164	Pressing end causes error	divascheme/divascheme.plt		defect	dyoo	assigned	2009-04-06T11:49:52-0400	2011-08-11T01:39:57-0400	"Press end on your keyboard

keymap: no function ""dive:end""

 === context ===
/Users/jay/Dev/svn/plt/collects/scheme/private/more-scheme.ss:155:2: call-with-break-parameterization
/Users/jay/Dev/svn/plt/collects/scheme/private/more-scheme.ss:271:2: call-with-exception-handler"	jaymccarthy
3		165	Pressing unicode in command mode causes insertion	divascheme/divascheme.plt		defect	dyoo	assigned	2009-04-06T11:52:22-0400	2011-08-11T01:40:26-0400	In command mode on OS X, press Alt-A... and å is inserted into the buffer	jaymccarthy
3		175	srfi.plt does not install cleanly due to error in info.ss	soegaard/srfi.plt		defect	soegaard	new	2009-05-03T13:00:45-0400	2009-05-03T13:00:45-0400	"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..."	cobbe
3		177	First line blank -> broken indenting	abromfie/drocaml.plt		defect	abromfie	new	2009-05-13T18:59:06-0400	2009-05-13T18:59:06-0400	"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.

"	anonymous
3		182	example from docs defines MDistributive module twice (and MDistributeLists not at all)	cce/dracula.plt		defect	cce	new	2009-05-28T21:21:06-0400	2009-05-28T23:00:03-0400	"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)))
}}}


"	pnkfelix
3		183	dracula rename export example from reference docs does not work	cce/dracula.plt		defect	cce	new	2009-05-28T22:38:11-0400	2009-05-30T08:37:23-0400	"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.

"	pnkfelix
3		184	modular acl2 unresolved import problem, useless error message	cce/dracula.plt		defect	cce	new	2009-05-28T22:57:00-0400	2009-05-28T22:57:00-0400	"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.

"	pnkfelix
3		186	Dracula errors on (just) + or - at REPL	cce/dracula.plt		defect	cce	new	2009-06-01T22:40:30-0400	2009-06-01T22:40:30-0400	"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.

"	pnkfelix
3		197	Warnings and a crash while installing on Windows	schematics/sake.plt		defect	schematics	assigned	2009-08-13T15:32:57-0400	2009-09-15T02:57:00-0400	"After lunching (require (planet untyped/unlib/for)) I received the following warnings and errors:


{{{
WARNING: collected information for key multiple times: (mod-path ""(planet schematics/sake)""); values: #(#<path:\\win.cs.brown.edu\dfs\home\gmarceau\.winprofile\AppData\PLT Scheme\planet\300\4.2.1\cache\schematics\sake.plt\1\0\doc\sake\Build_files.html> (""Build files"") #t (mod-path ""(planet schematics/sake)"")) #(#<path:\\win.cs.brown.edu\dfs\home\gmarceau\.winprofile\AppData\PLT Scheme\planet\300\4.2.1\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: ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #<module-path-index-desc>) ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #<module-path-index-desc>)
WARNING: collected information for key multiple times: (mod-path ""(planet schematics/sake)""); values: #(#<path:\\win.cs.brown.edu\dfs\home\gmarceau\.winprofile\AppData\PLT Scheme\planet\300\4.2.1\cache\schematics\sake.plt\1\0\doc\sake\Build_files.html> (""Build files"") #t (mod-path ""(planet schematics/sake)"")) #(#<path:\\win.cs.brown.edu\dfs\home\gmarceau\.winprofile\AppData\PLT Scheme\planet\300\4.2.1\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: ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #<module-path-index-desc>) ((""(planet schematics/sake)"") (#(struct:sized-element ... ...)) #<module-path-index-desc>)
copy-file: copy failed; cannot copy: C:\Program Files\PLT-4.2.1\MzScheme.exe to: C:\Program Files\PLT-4.2.1\sake.exe
setup-plt: error: during Launcher Setup for <planet>/schematics/sake.plt/1/0 (Sake)
setup-plt:   copy-file: copy failed; cannot copy: C:\Program Files\PLT-4.2.1\MzScheme.exe to: C:\Program Files\PLT-4.2.1\sake.exe
}}}
"	gmarceau@…
3		200	apparent Scribble error during package installation	cce/scheme.plt		defect	cce	new	2009-09-07T08:28:43-0400	2009-09-07T08:28:43-0400	"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.)"	cobbe
3		204	Parsing of missing closing HTML tags duplicates HTML elements	ashinn/html-parser.plt		defect	ashinn	new	2009-09-29T19:41:51-0400	2009-09-29T19:41:51-0400	"(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."	nothere44@…
3		207	Sudoku example doesn't work	williams/inference.plt		defect	williams	accepted	2009-09-30T16:06:09-0400	2009-09-30T16:08:30-0400	The Sudoku example does not work properly.	williams
3		209	"error: ""car: expects argument of type <pair>; given ()"" on specific input"	dherman/c.plt		defect	dherman	new	2009-10-06T15:01:36-0400	2009-10-06T15:01:36-0400	"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); }
"	zwizwa
3		210	Fails to compile with 4.2.2	schematics/port.plt		defect	schematics	new	2009-10-18T21:17:17-0400	2009-10-18T21:17:17-0400	`scheme' now provides `port->string', and thus this package fails to compile.	samth@…
3		211	Depends on Schemeunit 1:2, which doesn't compile	schematics/password.plt		defect	schematics	assigned	2009-10-22T11:46:53-0400	2009-10-23T11:43:50-0400	Currently, password.plt 1.0 requires schemeunit.plt 1, which doesn't compile in v4.	Sam TH
3		214	scribble warnings	soegaard/galore.plt		defect	soegaard	new	2009-10-23T10:33:44-0400	2009-10-23T10:33:44-0400	"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)
"	Sam TH
3		217	segments->painter return is failing on being passed to paint	soegaard/sicp.plt		defect	soegaard	new	2009-10-27T13:04:10-0400	2009-10-27T13:04:10-0400	";; 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>"	ebellani@…
3		219	error on require	schematics/benchmark.plt		defect	schematics	new	2009-11-10T10:17:06-0500	2009-11-10T10:17:06-0500	"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...

"	Sam TH
3		220	warnings from documentation	untyped/unlib.plt		defect	untyped	new	2009-11-15T17:11:39-0500	2009-11-15T17:11:39-0500	"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)
"	Sam TH
3		234	slide/stage	cce/scheme.plt		defect	cce	new	2009-12-01T18:47:04-0500	2009-12-01T18:47:04-0500	slide/stage is documented under slide/staged (note d)	Sam TH
3		235	add name? to staged	cce/scheme.plt		defect	cce	new	2009-12-02T13:37:59-0500	2009-12-02T13:37:59-0500	It would be nice if `staged' bound `name?' to #t or #f for each name in the relevant stage.	Sam TH
3		237	scribble text renderer dies with a type error	_default-component		defect	robby	new	2009-12-16T14:44:21-0500	2009-12-16T14:44:21-0500	"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."	dyoo
3		242	Digest contexts are leaked.	soegaard/digest.plt		defect	soegaard	new	2010-01-02T01:33:16-0500	2010-01-02T01:33:16-0500	"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."	David Brown <plt@…>
3		263	wrong compile-omit-paths entry in info.ss	lizorkin/sxml.plt		defect	lizorkin	new	2010-03-03T20:53:16-0500	2010-03-03T20:53:16-0500	"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.
"	ryanc@…
3		271	permissive?	kazzmir/planet-manager.plt		defect	kazzmir	new	2010-03-26T11:22:01-0400	2010-03-26T11:22:01-0400	In planet-utils.ss, (permissive? #t) cannot be evaluated because `permissive?' is not bound.	laurent.orseau@…
3		272	incomplete folders	kazzmir/planet-manager.plt		defect	kazzmir	new	2010-03-26T11:28:28-0400	2010-03-26T11:28:28-0400	"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."	laurent.orseau@…
3		273	build-path: absolute path	kazzmir/planet-manager.plt		defect	kazzmir	new	2010-03-26T11:39:46-0400	2010-03-26T11:39:46-0400	"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!

"	laurent.orseau@…
3		282	Unable to make 4.2.5 with shared libraries enabled.	_default-component		defect	robby	new	2010-05-04T17:04:34-0400	2010-05-04T17:04:34-0400	"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
"	snider6982@…
3		283	incorrect `declare-exporting'	dherman/types.plt		defect	dherman	new	2010-05-05T10:39:21-0400	2010-05-05T10:39:21-0400	"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)]"	anonymous
3		285	Fails to compile	dherman/javascript.plt		defect	dherman	new	2010-05-27T15:49:22-0400	2010-05-27T15:49:22-0400	Error is: only-in: identifier `language/macro-stepper<%>' not included in nested require spec	Sam TH
3		292	png_set_gray_1_2_4_to_8 not found while compiling	_default-component		defect	robby	new	2010-08-12T19:51:40-0400	2010-08-12T19:51:40-0400	"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."	petraszd
3		299	Cannot typecheck (equal? (list) (list))	krhari/pfds.plt		defect	krhari	new	2010-09-12T01:58:58-0400	2010-09-12T01:58:58-0400	"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)
}}}
"	dvanhorn
3		302	define/memo doesn't save time for funs of arity > 1	dherman/memoize.plt		defect	dherman	new	2010-10-09T13:06:29-0400	2010-10-09T13:06:29-0400	"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.
"	clements@…
3		323	(rsound-play ding) does not play in Debian sid	clements/rsound.plt		defect	clements	new	2011-02-25T11:54:29-0500	2011-02-25T11:54:29-0500	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.  	mikeg@…
3		328	claims to install successfully, but doesn't seem to actually work	divascheme/divascheme.plt		defect	dyoo	assigned	2011-04-23T08:22:32-0400	2011-08-11T01:37:50-0400	" {{{
 Welcome to DrRacket, version 5.1 [3m].
 Language: racket; memory limit: 128 MB.
 > (require (planet divascheme/divascheme:1:6/install))
 DivaScheme should now be installed.

 To finish the installation, please restart DrScheme.
 Once restarted, F4 will toggle DivaScheme on and off.

 If you wish to install the launcher for generate-stags, see Help Desk on
 'generate-stags' for details.
 >
 }}}

 but then when I restart DrRacket and hit F4 nothing happens. I remember
 this extension working in previous versions of PLT, but it doesn't seem
 compatible with the current version for some reason."	anonymous
3		332	Looks like this language extension is broken on latest version of Racket and PLT-Scheme	abromfie/drocaml.plt		defect	abromfie	new	2011-05-03T07:32:52-0400	2011-05-03T07:32:52-0400	"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.
"	histfak@…
3		338	Error with Racket 5.1.2 and bzlib	bzlib/base.plt		defect	bzlib	new	2011-08-06T15:14:39-0400	2011-08-06T15:14:39-0400	"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."	anonymous
3		345	socket.plt fails to install	vyzo/socket.plt		defect	vyzo	new	2011-08-24T12:02:26-0400	2011-08-24T12:02:26-0400	"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"""	anonymous
3		357	Upgrade bindings to the current Cairo release	samth/cairo.plt		defect	samth	new	2011-09-01T05:17:35-0400	2011-09-01T05:17:35-0400	"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."	zio_tom78@…
3		363	Hello world doesn't compile	dyoo/js-vm.plt		defect	dyoo	new	2011-09-11T15:38:27-0400	2011-09-11T15:38:27-0400	"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)
}}}"	james@…
3		370	writing comment inserts extra spaces	neil/html-writing.plt		defect	neil	new	2011-10-31T18:01:33-0400	2011-10-31T18:01:33-0400	"`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-->""
}}}
"	ryanc
3		371	Running example code produces no sound	evhan/coremidi.plt		defect	evhan	new	2011-11-08T12:26:24-0500	2011-11-08T12:26:24-0500	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?	John Clements
3		372	Unbound identifier	evanfarrer/SPeaCAP.plt		defect	evanfarrer	new	2011-12-01T08:34:08-0500	2011-12-01T08:34:49-0500	"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
 >"	robby
3		385	compilation error on racket v5.1.3	dherman/parameter.plt		defect	dherman	new	2011-12-18T13:28:33-0500	2011-12-18T13:28:33-0500	"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"	roti
3		387	compilation error	untyped/mirrors.plt		defect	untyped	new	2011-12-24T12:26:54-0500	2011-12-24T12:26:54-0500	"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 ---
"	roti
3		409	Negative numbers unsupported	jeeve/live.plt		defect	jeeve	new	2012-02-05T17:38:46-0500	2012-02-05T17:38:46-0500	"live-web-number function don't return negative numbers.
Of same for plotting functions."	jvjulien@…
3		411	Growing memory consumption when using ryanc/db.plt	ryanc/db.plt		defect	ryanc	new	2012-03-08T05:38:08-0500	2012-03-08T05:38:08-0500	"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."	yvesf-racket@…
3		415	bug in firmata.scrbl	xtofs/firmata.plt		defect	xtofs	new	2012-04-12T19:23:34-0400	2012-04-12T19:23:34-0400	"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"	ozzloy@…
3		421	static-page won't load for 5.2.1	dherman/static-page.plt		defect	dherman	new	2012-05-16T17:17:00-0400	2012-05-16T17:17:00-0400	"> 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))
> 

"	heap@…
3		427	Subquotes break the csv-reader	neil/csv.plt		defect	neil	new	2012-05-21T14:41:00-0400	2012-05-21T14:41:00-0400	"Something like
 
DATUM1|DATUM2
""A \""X\""""|123

breaks the reader with the message:
%csv:make-portreader/positional: Junk after close of quoted field: #\X"	ebellani@…
3		433	install complains	soegaard/sicp.plt		defect	soegaard	new	2012-05-26T14:46:34-0400	2012-05-26T14:46:34-0400	"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."	ozzloy
3		434	install complains	neil/sicp.plt		defect	neil	new	2012-05-26T14:47:25-0400	2012-05-26T14:47:25-0400	"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."	ozzloy
3		449	JSON parser incorrectly parses '[' with newline and then ']'	dherman/json.plt		defect	dherman	new	2012-07-28T05:10:26-0400	2012-07-28T05:10:26-0400	"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)."	wjak56@…
3		450	stty on mac doesn't support -F	neil/charterm.plt		defect	neil	new	2012-08-01T15:54:26-0400	2012-08-01T15:54:26-0400	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.	zarcher
3		467	Doc bug in csv->list applied to a string	neil/csv.plt		defect	neil	new	2012-09-05T19:54:16-0400	2012-09-05T19:54:16-0400	"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."	clements@…
3		470	can't bind commands to capital letters	divascheme/divascheme.plt		defect	divascheme	new	2012-09-18T21:37:59-0400	2013-01-20T22:55:49-0500	"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."	dpercy@…
3		487	i need rosetta	aml/rosetta.plt		defect	aml	new	2012-10-28T05:12:10-0400	2012-10-28T05:12:10-0400	i need rosetta 	vasco_garcia_@…
3		490	Unable to install	neil/csv.plt		defect	neil	new	2012-10-29T22:22:20-0400	2012-10-29T22:22:20-0400	"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."	simon.haines@…
3		501	Problem finding files - package setup/internal links	dherman/network.plt		defect	dherman	new	2012-12-16T09:36:06-0500	2012-12-16T09:36:06-0500	"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
"	khardy
3		507	Font lock doesn't work for subsubsubsection	neil/scribble-emacs.plt		defect	neil	new	2013-01-23T00:41:52-0500	2013-01-24T22:01:06-0500	"I have created a patch for this.

--- a/.emacs.d/emacs-lisp/scribble.el
+++ b/.emacs.d/emacs-lisp/scribble.el
@@ -283,11 +283,11 @@ For other licenses and consulting, please contact the author."")
                     ...)
                    part-start?
                    scribble-subsubsection-heading-face]
-    [sub*section   (,@scribble-heading-form-args
-                    [p - pre-content? -]
-                    ...)
-                   part-start?
-                   scribble-sub*section-heading-face]
+    [subsubsub+section   (,@scribble-heading-form-args
+			  [p - pre-content? -]
+			  ...)
+			 part-start?
+			 scribble-sub*section-heading-face]
     [author ([p - content? -])
             block?
             nil]
@@ -711,9 +711,8 @@ For other licenses and consulting, please contact the author."")
                      (,(if face 6 5) 'scribble-curly-brace-face nil t))))
                (let ((face-to-namerxs-alist '()))
                  (mapc (lambda (form)
-                         (let* ((namerx (regexp-quote
-                                         (symbol-name (scribble-get-form-name
-                                                       form))))
+                         (let* ((namerx (symbol-name (scribble-get-form-name
+                                                       form)))
                                 (face (scribble-get-form-face form))
                                 (pair (assq face face-to-namerxs-alist)))
                            (if pair
"	highfly22@…
3		518	Doesnt' run	kazzmir/planet-manager.plt		defect	kazzmir	new	2013-03-23T06:46:40-0400	2013-03-23T06:46:40-0400	"monk@veles:~/languages/racket$ racket
Welcome to Racket v5.2.1.
> (require (planet kazzmir/planet-manager:1:1/gui))
/home/monk/.racket/planet/300/5.2.1/cache/kazzmir/planet-manager.plt/1/1/planet-utils.ss:5:49: only-in: identifier `pkg-spec->full-pkg-spec' not included in nested require spec at: planet/resolver in: (only-in planet/resolver pkg-spec->full-pkg-spec get-package-from-server pkg-promise->pkg)
> 
"	kalimehtar@…
3		534	Fixing the test files	shawnpresser/racket-unix-sockets.plt		defect	shawnpresser	new	2013-04-17T09:27:13-0400	2013-04-17T09:27:13-0400	"Thanks a lot for this package, it will be very helpful.

The tests don't work properly as they are.
In particular, when installing the package from PLaneT, names tend to be quite long, raising the 100 characters long error.
Placing the socket in racket's pref-dir should be better.

Also, all racket files should begin with the ""#lang"" line. Usually ""#lang racket"" or ""#lang racket/base"" for non-GUI programs.

Last, it is usually advised that the test files should not reference the PLaneT package, but the updir main.rkt file instead.

Maybe there should also be a note in the readme telling to avoid testing the listener in DrRacket, otherwise a crash may be expected ;)

Fixes for the test files:

-- test-connecting.rkt:
#lang racket
(require ""../main.rkt"")

(define-values (i o) 
  (unix-socket-connect 
   (build-path (find-system-path 'pref-dir) 
               ""tmp-socket"")))

(display ""hello"" o)

-- test-listenning.rkt:
#lang racket
(require ""../main.rkt"")

(define (serve path)
  (define listener (unix-socket-listen path 5))
  (printf ""listening: ~a"" listener)
  (newline)
  (define (loop)
    (accept-and-handle listener)
    (loop))
  (loop))

(define (accept-and-handle listener)
  (define-values (i o) (unix-socket-accept listener))
  (printf ""accepted: ~a"" listener)
  (newline)
  (display (read-line i))
  (newline))

(serve (build-path (find-system-path 'pref-dir) ""tmp-socket""))


"	orseau
3		539	Problem installing Whalesong	dyoo/whalesong.plt		defect	dyoo	new	2013-05-15T17:02:28-0400	2013-05-15T17:02:28-0400	"I've just installed Whalesong for the first time. When I try to run it, I get the following error message:

Library/Racket/planet/300/5.3.4/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
  at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
  in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))

The same happens when I run raco setup."	kruckman@…
3		540	What's Needed For Practical bad car credit loan need Secrets	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T04:26:37-0400	2013-05-19T04:26:37-0400	"

U . s . Stafford  [http://www.loanspoty.com Homepage] are student loans by the govt especially the office of education and learning. They offer low interest college student loans proper applying to study in a very US college.



. .Jemson Devsen can be a legendary article writer that has penned numerous articles or blog posts on finance and features quite a few years of expertise as the key consultant to economical consultancies. To seek out navy payday  '''loans''', armed forces  '''loans''', armed service cash advance  ''' [http://www.loanspoty.com loanspoty.com May]''' that most effective home page's you would like take a look at




In combination with preferential federal pupil loans you'll be able to resource interest free pupil loans that are often made available from charity footings. Occasionally readily available to pupils only inside of a a number of point out who attend an instate education, when other people can be located nationally. For example, the Invoice Raskob footing gives 0 % interest loans to learners on such basis as both equally want and identity, and also as college students make your loan payments the total funds are was into zero interest loans for additional a candidate pupils."	Gilbert Mathis
3		541	Emerging Ideas In Recognising Primary Elements Of military payday loan	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T04:38:34-0400	2013-05-19T04:38:34-0400	"

It's essential to question the bank how many years that you must spend on the loan cash advance long backside. And there'll be no penalty priced once you spend the money for pay day loan. If their is then you should discover a further  ''' [http://www.furyloan.com go to site]''' business in a different place. By contrasting costume store providers there is an finest  '''payday loan'''. Even the fact that interest rates and costs may be the most cherished factor that you should know. Consult the BBB or Bbb to be sure that company are excellent company's, before you sign manageable many of the bureau's to locate its superior expert services.

 [http://www.amazon.com/s?ie=UTF8&amp;rh=i%3Aaps%2Ck%3APayday%20Loans%20Houston&amp;page=1 find a lot more facts]




 [http://wiki.uiowa.edu/display/DOC/2010/09/10/payday+loans look at this specific webpage]

Lending for these particular loans is offered to individuals fairly quickly, often within minutes of arrangement and sometimes only for 1 day. Nearly all payday loans agree to men and women with incredibly bad credit or no consumer credit. This quick and simple make use of capital 's what helps make payday loans basic. Typically men and women want this form of loan to finance unexpected costs that won't be able to hold off until your following salaryday for example immediate health expenditures. Individuals commonly sign up to loans various from Usd100 to Money1500."	Forbes Peck
3		542	A Quick Analysis On payday loans no faxing Solutions	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T04:39:17-0400	2013-05-19T04:39:17-0400	"
= visit www.wpmonk.com site =
If you''ve performed a fairly easy Google about online  ''' [http://www.wpmonk.com payday loans no faxing]''', you would have noticed the ample level of strikes that acreage your issue. This ought to be the 1st banner. Amaze! You'll find lots and even a large number of these online  '''payday'''  '''loan''' firms around. Exactly what is the cause of this accurately?








"	Stanley Lloyd
3		543	Direct Deposit Payday Loan - Get Cash Fast Without Hassles	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T07:07:57-0400	2013-05-19T07:07:57-0400	"

There isn't a individual person that can tell truthfully that she or he not really essential extra money. Women and men will definitely not enjoy their loans in a further arms. Acquiring the  [http://www.bestpaydayloanlender.org best payday loans direct lender] is rather easy. That which you basically involve for receiving the payday loan is you could have to me the homeowner of the usa for proper time period and ought to have a checking account

 [http://stores.ebay.com/Accent-Printing-Signs-Banners/_i.html?_nkw=Real+payday+loans http://stores.ebay.com/Accent-Printing-Signs-Banners/_i.html?_nkw=Real+payday+loans]




 [http://stores.ebay.com/Accent-Printing-Signs-Banners/_i.html?_nkw=Real+payday+loans look at that website]

No fax payday  '''loans''' are regarded as individualized and among the easiest loan course of action. The complete loan processing is conducted by way of on the web expert services. Fascinated individual is forced to gain access to the site of their own desired finance enterprise. After registering with loan company, then individual can readily get the web based application form. This way has a variety of card blanks that obtain details about the customer's personalized and also employment condition. As early as you post this form , the vip's of the special kind will get hold of someone to go over the needs of additional running mainly related to the documentation and name confirmation. As fax less payday loans are intended using a basis of providing easy financial help, the borrowers can stay confident with the fact that even this compulsory system of verification will likely be accomplished in the least amount of time-span."	Oscar Mays
3		544	Challenging Ideas On Primary Elements In emergency payday loans for bad credit	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T08:06:16-0400	2013-05-19T08:06:16-0400	"

There isn't any solitary one who know genuinely that she / he definitely not expected extra money. Individuals will truly not like to have their loans in a different fingertips. Obtaining the  [http://www.milkicash.com emergency payday cash loans] is rather simple. What you purely demand for getting the payday loan is it's likely you have with me the resident in town of America for proper time period and should have a bank checking account

 [http://payday.woodfin-nc.gov/short-term-loans-appleton-wi.html try the following web site]


=== Updated Ideas On Uncomplicated emergency payday loan Programs ===



The reason you will need a account is as this is in which you could redeem the amount of money that you get through the payday loans. Something else that you'll need that allows qualify is that you simply just need an origin of continuous earnings.This is why they will ensure that you can eliminating that which you obtained from their website. The moment you could have competent for immediate payday loans, you possibly can be lent quantities that include GBP50 to GBP1000 any time through the day. If you pay back your loan, just give them a call and they will help your hard work a little something out."	Lloyd Mcconnell
3		545	An A-Z On Logical Secrets In how payday loans work	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T08:07:11-0400	2013-05-19T08:07:11-0400	"

Online use selection Looking for  ''' [http://www.howpaydayloanswork.info how payday loans work]''' gifts numerous income over other improbable approaches to very important money requires as financial institution  '''loans''' are generally for a lot excellent chunks of money of cash and require repayment in repayments in addition, charge cards are disreputable for spiraling uncontrollable if you don''t maintain the repayment demands therefore it can make wisdom to discover the perfect alternative for ones quick money challenges by choosing a  '''payday''' loan Britain, the rate and expediency only are good reasons to think about them when you require income on the go. No fax payday loans are amazing that a great many many people have had positive experiences with like a speedy way of getting the thirty days conclusion funds which could assist them to pay bills or any surprising expenditures effortlessly.



A simple on the net request is all that's needed to practice your cash advance easily. The applying method for any  '''''' is straightforward, purely decide on a  '''payday loan''' professional, fill in the appliance and touch distribute, give yourself seconds to permit your dog out and obtain a little something to sip, look at email and locate your agreement for a no credit check required  '''payday''' loan.


 [http://answers.yahoo.com/question/index?qid=20090520054823AAhNIl8 check out that web site]

High Loan Expenses  Lots of  '''payday loans''' charge fees for each Money100 obtained. These can fury from Dollar15-Dollar30. As well as this Interest rate is usually anyplace close to 400% compounded daily and perhaps around 1000% with the loan should it be very past due upon. Numerous critics protest that these particular rates are not fair and fraudulent.  Nevertheless, numerous proponents of payday loans are convinced that loan providers have to ask for this kind of great APRs to produce a loan worthwhile. Being that payday loans typically only latter months to your calendar month receiving an Interest rate such as a bank card or 20Per-cent-25Per-cent, wont make expense useful. A superior fall behind amount on payday loans helps to make the loans more risky to financial institutions who need to make up like the defaults by receiving better expenses to borrowers. Creditors also demonstrate that a number of the installation charges may be every bit as in comparison with a lot of fees that mortgage loan and individual loan businesses ask for their."	Jeffrey Fitzgerald
3		546	Valuable same day payday advance Programs - A New Analysis	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T08:53:47-0400	2013-05-19T08:53:47-0400	"
== Helpful Advice On Deciding upon Issues Of same day payday advances ==
No individual on earth is given a clean chit from the fiscal miseries of life. Everyone is motivated to manage some kind of financial restrict eventually of your energy. Hence, it is necessary for all of us to learn the necessity of some swift monetary options which could assist us during times of important fiscal demands.  ''' [http://www.advsay.com same day payday]''' is but one these astounding financial design which was exclusively made with clear words and regulations for that highest ease of the people. These  '''loans''' will need no assets and they are devoid of the toiling activity of publishing pointless info on your fiscal reputation, credit score, profits paperwork and many others. Additionally, some may be certain of an reasonable tax assistance that lets you stay clear of dealing with the lots of pressure. The loan total proposed by the lending company is provided for free through the excruciating before-problems and you could as a result submit an application for the same in a a great deal easy method. The complete range of these loans enables you to satisfy any kind of expenditure, since there is no restriction with the loan company.

 [http://local.answers.com/business/EZMONEY_Payday_Loans--150492156.html discover a lot more information and facts]


=== Some Basic Answers On Key Criteria In same day loans payday ===

 [http://social.cs.uiuc.edu/quals/images/archive/?payday-loans-louisiana related guide]

"	Ansel Richmond
3		547	www.howpayday.com - Profile	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T09:44:31-0400	2013-05-19T09:44:31-0400	"

Which has a  ''' [http://www.howpayday.com/do-you-know-how-do-payday-loans-work/ how do you know your dog has worms]''', no stability should be used with the loan. This implies you can obtain a  '''loan''' in a situation where the lender are not able to present you with one particular. The short-expression payment time pays to as the loan will not likely remain. You're going to be provided what you are able to pay, that means there is no chance of the loan with a weight of closely on your pants pocket. It will be easy for any



Payday loans internationally recognized for it is easy availability, the financial corporations furnishing these loan amenities are responsible for certain to supply a simple and fast loan capability on their consumers making sure that availing loan should not become throbbing headache for those. Quick  ''' [http://www.howpayday.com/do-you-know-how-do-payday-loans-work/ Do You Know How Do Payday Loans Work?]''' No fax No Credit Check Required as you would have it are payday loans without the faxing or records since the online facility of obtaining these include causing them to less difficult and fast to take advantage. These loans have become handy for taking and really easy to enjoy.
== Trouble-Free Strategies In Do You Know How Do Payday Loans Work? - A Background Analysis ==



"	Enoch Koch
3		548	Recognising Useful Secrets In payday loans florida	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T13:42:28-0400	2013-05-19T13:42:28-0400	"
= Background Advice On Fundamental Aspects Of payday loans florida =
A  ''' [http://www.floridayday.com visit www.floridayday.com]''' takes a few minutes to practice. You'll be able to make an application for it online and obtain cash in your promptly. The other options to make it happen face to face. In the two caser, you must complete your documents then teach your bank to pay the bucks service provider as soon as your salary is attributed towards consideration. The cash loan is often not major. It is very important note that specialists suggest not to use this type of loan for a long lasting economical answer. You ought to usually such type of individual loan in case you have problems. Causing this to be a lasting economic resolution can cause you severe financial challenges. These loans earn interest in it services or products other personalized loan. Make sure you spend it at the earliest opportunity. It is best to fork out it the instant you obtain your pay.

 [http://payday-loans.truro-ma.gov/instant-payday-loan.html http://payday-loans.truro-ma.gov/instant-payday-loan.html]


=== go to floridayday.com 2013 ===

 [http://encyclopedia.gwu.edu/jbll/extensions/?payday-loans-pennsylvania go to web site]

Everywhere there is also a amount of providers that offer you payday loans. Having said that, just a fistful has payday advance loans with no bank account. Normally, the organization would difficulty a check mark or complete a twine exchange into your bill but for a small fee, you might have them give you a income obtain or cashier''s verify in its place."	Sherwin Little
3		549	Some Simple Guidelines For Methods In cheap payday loans	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T15:38:02-0400	2013-05-19T15:38:02-0400	"
== Some Emerging Challenges For Factors In cheap payday loans direct lenders ==
Need added monetary aid very fast! Then, an Text message is sufficient to get loan accredited to you very quickly. Payday word  [http://www.xlcheap.com xlcheap.com May] is there to aid you of monetary troubles with reduce promptly. Subsequently, you don''t really need to decide on any classic loan method which certainly utilizes a large length of time that may help you. Some genuine data relevant to your company name, time, tackle, revenue, smartphone range, e mail etcetera are sufficient post in application form as a way to register a mortgage lender  '''online'''. Immediately after affirmation of the info, the financial institution sends Code code by confirmation mail. You could use PIN value whenever to try to get the payday word loans.

 [http://ctl.cedarville.edu/atrn/basicat/bbpress/topic.php?id=1642 even more tips]

Lenders may present loans on attached web sites, which can be crucial if the site isn8217t guarded your identification could land in lawbreaker hands. Loan companies might existing  '''''' about $500 having said that, you will require evidence satisfactory revenue to repay the loan. The payday loans with endorsement are electronically sent to your savings account. At most of the couple of loan providers obviously express that the money is certain to get on your checking account, dependant upon the standard bank you standard bank.
== Quick Products Of cheap payday loans - Emerging Ideas ==



The web is overflowing with presents of income boost payday loans. As a result of large level of competition among financial institutions there are a few excellent marketing presents available with either a significantly diminished cost for your loan, or possibly a cost absolutely free loan. Obviously these features are geared towards new customers with the aspiration that they can return as there are nsa that serves to in addition reap some benefits. With all the typical  '''payday loan''' priced at amongst Buck20 and $30 for each Dollar100 obtained, whenever you can choose one which is totally free, or having a low control over Dollar10, these unquestionably are worth using. Attempt to obtain an world-wide-web loan company who boasts shops, like this you&rsquoll know they aren&rsquot in the eventually ask yourself wide range but have got a genuine base."	Atwood Boyer
3		550	Simple Ways To Save Money Now - EzineArticles Submission - …	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T17:40:03-0400	2013-05-19T17:40:03-0400	"

The following you will discover virtually all you should be familiar with  ''' [http://www.sxloans.com sxloans.com]''' and lending funds. Check out mortgage loan, non-public  '''loans''', less-than-perfect credit  '''loans'''  plus more inside our huge report data source. To learn more be sure to go to -  info-about-personal loans

 [http://recommendations.ebay.com/FAST-CASH-LOANS-BANNER-SIGN-pawn-shop-signs-loan-quick-payday-advance-credit-/MESMR?_pvtid=170816943958&amp;_category=164346&amp;_trksid=p4340.m444 http://recommendations.ebay.com/FAST-CASH-LOANS-BANNER-SIGN-pawn-shop-signs-loan-quick-payday-advance-credit-/MESMR?_pvtid=170816943958&amp;_category=164346&amp;_trksid=p4340.m444]

Looking for some  '''''' right up until the next pay day? Nicely, nowadays payday advances help you in your immediate necessity of  '''fast cash''' with swiftest attainable period. With this center you are able to acquire crucial tax assistance to reduce for your personal troubles instantly. Payday loans give you fast cash without any long procedures and faxing an awful lot of documents. Using the fast cash assist of a payday loan you'll be able to divest your self on the issues like spending money on health care costs, groceries, car problems, cellphone charges, power bills, reconcile bank card expenses, and many types of that.




There are plenty of different types of property loans besides the prevalent loans consumed by persons. Other household loans involve split dwelling loans, a bad credit score household loans, balanced out property loans, low conforming loans and lower doc residence loans. To search for the most effective mortgage loan for that acquiring of your house talk with a home loan dealer, add the financing use and get the depending endorsement. Here is the position wherever you'll want to see if your credit report has any concerns that need to have ironing out. When you've sorted out to your credit rating you up coming have to have a survey statement purchased through the mortgage broker the place an unconditional agreement can be produced in your dwelling. After you have received this unconditional endorsement, you could start taking a look at construction loans which fit your family funds the most beneficial."	Freeman Boone
3		551	Locating Fast Programs For best unsecured loans for bad credit	Dima_/Tray.plt		defect	Dima_	new	2013-05-19T17:50:39-0400	2013-05-19T17:50:39-0400	"

Arizona Salaryday  ''' [http://www.loanunsecuredbadcredit.org additional facts]''' - Receive Loans Swift  You can obtain his loans easily in Phoenix arizona, Glendale or another location in Illinois. In fact, Az purchasers can safe and sound their particular salaryday loans because of large quantity of finance enterprises furnishing this type of loans, all through the Point out. Definitely, quick payday loans on the net are not just obtainable in Illinois still all over the state. Us loan companies result in the course of action simple for website visitors to have their cash promptly. They cook specified the bucks is normally immediately placed for their checking account, in the moment some hours. In truth, lots of trustworthy and powerful creditors choose to supply buyers in addition to payday advance loans with a fast way at extremely ambitious rates.








Most lenders are typically in ask with one another as a way to supply you with a loan. Which means that it is usually simpler of computer has been in the previous to secure a personal loan. Cut-throat pricing and interestrates could make it virtually a great time. Just about anybody can  '''now''' get a loan if you are operating which enables it to increase the risk for payments - whether or not your credit score isn't delicious. Here is what you must know to receive that private you would like."	Avery Petty
3		552	Eat these Natural Slimming Pills for Losing Fat	Dima_/Tray.plt		defect	Dima_	new	2013-05-23T00:00:52-0400	2013-05-23T00:00:52-0400	"Pounds loss pills' get the job done is de facto a dialogue to aid qualities in the effective slimming tablets. You have to slim down quickly, too as properly devoid of having placing your everyday lifetime at risk. Depending on documented customer feed-back on the internet, a couple of kilos loss tablets do operate virtually. Various research and healthcare experiences do claim that ten p.c in the slimming tablets do allow you to reduction pounds in relating to six excess weight masses. They eradicate bodyweight by blocking body fats in that which you eat as a result of currently being absorbed inside of your overall human body. A very productive slimming tablet really should become a wonderful body fat binder pill. Scientifically confirmed fat reduction capsules get and make the binding of solution all around excess fat substances. This stops versus using in fats from foods you consuming. Overall body extra fat is handed down out as squander elements by way of normal intestinal movement. These kind of products support to reduce your consumption of food simply simply because they build a viscous remedy with bile belly acids. It has the result of slowing down the digestion at the same time as absorption of sugar. As a result you're going to come to feel total for your more time time period, halting you from overindulging. Slimming tablets that basically work transpire to get presented the green gentle by Fda. Slimming tablets are basically licensed by north America Food and drug administration in addition to other global as well as scientific enterprise. Scientifically analyzed, clinically authorised and clinically investigated slimming pills have no regarded side consequences which is the key cause they may be permitted by Fda in into the marketplace. These are generated from desert natural herbs and also have completely no chemical substances within just their construction. Confirmed weight decline products when coupled with regime exercises may help lose a minimum of a single pound in the to start with days and three in next months. You have to be in a very place to find out significant ends in three months. Efficient slimming tablets will have already been advisable by medical professionals and marketed freely around the earth only mainly because they purpose. 





You can not discover adverse reviews only for the reason that even medical doctors in addition as major scientist have specified their authorization such as nationwide medicine security administrations throughout the world. Applying slimming capsules for fatness procedure delivers slowly end up becoming the development not too long ago. Staying obese happens to be, big issue which has influenced bleary the local community; overweight too as non-obese as well. The being overweight overall health dilemma offers so afflicted society the industry features emerged from this - the load decline well being complement. Weight loss tablets and dietary health supplements have taken within the nutritional necessity for properly well balanced and purely natural diet regime. Rising craze in the taking slimming tablets is clear throughout the big scale this kind of capsules and nutritional health supplements flooding the marketplace along with the world-wide-web. Getting stated that, it's going to very likely be just presumptuous to believe in that every these weight tablets can perform miracles in your remaining over weight. You must think about meticulously your peculiar state of affairs and choose best bodyweight reduction software tablets to suit your needs individually. A lot of pure at the same time as synthetic weights lowering slimming is readily available for efficient fat loss. You are able to buy Revolyn online on Abhehm-blog.com. Currently being overweight is surely an sickness that requires attention and useful procedure. Adjustments in life style, operating out, and dieting at the same time as body weight decline are necessary for virtually any complete remedy and avoidance on the relapse. The slimming supplements should help in battling being overweight. Nevertheless a far more sustainable technique of weight loss treatment is necessary for virtually any finish remaining over weight remedy. Remaining obese opens your entire body another illnesses which happen to be worse when compared with it. Instances like myocardial infarction, diabetic, heart complications amounts, as well as the off-shoot of your being overweight. You might use weight decline tablets to reduce weight problems in addition as handle it. Various eating plan tablets tackle being overweight efficiently. Nevertheless care ought for being sent to pick out bodyweight reduction treatment method drugs which have no dangerous side results determine. Numerous excess weight managements are herbal-based while some are artificial. They can be superior at dealing with staying chubby. 





For efficient fat loss treatment method, mix slimming drugs as well as workout along with variations in way of life. You can also [http://abnehm-blog.com/revolyn Benutzen Sie diesen Gutschein um hohe Rabatte für Revolyn zu bekommen]. Look for for diet regime tablets which happen to be also slimming products and fats binders. In case you modify your daily existence type by means of including physical exercise or maybe aerobics within your every working day wellness system, it's possible you'll be healthier, harder, thinner, more healthy, and much more powerful and restore you self-confidence. Select residing and slim down with excess weight decline tablets for weight decline treatment method. Feeding on slimming drugs may be the quickest method to slender down. Even now it can be far within the simplest. You may be trapped within your slimming plans in case you count on slimming tablets only. Health treatment specialists declare that you will need to have a well balanced healthy eating plan when you consume slimming tablets. Pounds reduction products can get the job done awesome for shedding weight after you understand employing all of them safely and securely. Here are a few beneficial directions, in no way choose a pill which is new in marketplace. You are able to purchase stackers for dropping pounds. You'll be able to acquire among numerous stackers accessible. Although consuming the burden reduction tablets, have it possessing a full cup of ingesting water. Moreover, take in eight parts of water each individual day. This tends to assist you conserve from lacks. In the event you consume these types of capsules greater than encouraged dose, you could possibly have a greater likelihood of adverse effects. It's achievable for dropping pounds only when you make proposed dose. To have the extremely finest from excess weight reduction pills, foremost motion to get will be to reduce your urges. The substantially much less you want, the greater you are going to foresee possessing a healthier way of life. But deciding your cravings additionally call for effort and time. Subsequent are methods can help you avert your cravings for harmful foods. Draw up an index of the explanations why you want to to stay with the particular diet. A few factors for residing a healthful living is often self-pride and compliments from your relations. You're going to prevent wanting for harmful foods each time you critique this particular listing frequently. This will aid you to definitely evaluate in the event the meals a person crave are actually value your energy not likely. These foods sorts give short-term satisfaction. For that rationale history will direct you to definitely stick with well balanced diet regime.

"	anonymous
3		553	How to Do S Claims With San Diego Car Insurance	Dima_/Tray.plt		defect	Dima_	new	2013-05-23T02:30:10-0400	2013-05-23T02:30:10-0400	"When obtaining San Diego automotive auto insurance policy prices it really is regularly very best to identify which kind of insurance is necessary or most widely used. Men and women have at the moment observed the web is biggest place to induce San Diego car insurance policies quotations owing to its ability to induce hold of numerous offers instantly. Just what the vast majority of individuals doesn't comprehend is the fact that their coverage is specified via the a few digit process completely to automotive automobile insurance policies. Routinely, coverage seems this style thirty/ninety/twenty. Usually, individuals purchasing automotive car or truck insurance policy don't have any clue what these figures represent and to be a handle never have any approach what their quality is obtaining. This text can assist in giving you a greater comprehending on what every assortment indicates that and with any luck , aid acquire away a variety of the uncertainty. The initial digit, the thirty throughout this example, suggests that each specific would be lined for thirty thousand bucks in bodily harm. The second assortment, that is certainly ninety, implies the complete coverage for bodily harm for all persons worried in the accident are likely to be ninety thousand pounds. The third range, that is twenty in our example, relates to house damage. Should your vehicle brought about any house harm in the time from the crash the protection can hand around to twenty thousand pounds for repairs. The most beneficial things to keep in mind what these quantities symbolize are linking them to phrases rather than numbers. It'd seem throughout using this method: bodily personal injury per person/bodily injuries for each and every accident/property damage for each and every collision. Within our case in point along with every individual anxious within the collision could be at liberty to urge approximately thirty thousand dollars for injuries sustained as a results of the incident. Thirty thousand dollars may be ample deficient for this kind of protection as health care costs will establish incredibly quickly. Unfortunately, in the event your healthcare costs transcend your bounds of protection you can possibly be command prone to pay back the remaining charges. It's informed have a greater degree of for each person bodily harm protection of a least of hundred/three hundred/hundred. The moment receiving level of entry motorized vehicle insurance offers it's steered to have at least 1 lakh pounds coverage for bodily injuries defense plus a clear least of 3 lakhs bucks bodily injuries protection for each incident. Nonetheless, if you at the moment are pondering essentially the most basic issue: where can I find a company local? we have been listed here that can assist you with local listings in the San Diego auto insurance [http://www.iisinsurance.com/auto-insurance-san-diego-ca highest rated providers]. 



Should really folks select not to get city motorcar insurance quotations on-line then it truly is an straightforward prepare to lift their indigenous agent many queries around the kind of coverage which could go with their specifications. Therefore you could search for south bay spot providers in order for you to buy the bay location insurance coverage rates. Indigenous brokers square measure rather satisfied to elucidate the issues involved the moment deliberation the selection of substantial restrictions of coverage vs . reduced coverage boundaries. Once acquiring recommendation to the shape of coverage the insured should for getting, native vehicle insurance agents can really need to grasp bound info concerning the generate and product from the auto to be insured, everyday commute, driving knowledge, and driving heritage. Furthermore, ostensibly unrelated data is also wished, generally together with the intent of getting level discounts. Samples of this kind of knowledge embrace design and style of employment, credit history rating, education, and past driving instruction or classes taken. When acquiring San Diego car coverage prices it really is good to remember of what the vital coverage is for your condition you might be residing. As an instance, to the state of Calif. the legislation demands a least protection of fifteen/thirty/five. Everyone will see nevertheless this could be dangerous coverage. As an illustration, if a person was answerable to get a crash that involved four disjointed folks the wellbeing costs might rapidly move up spill the thirty thousand pounds. As soon as the 30 thousand pounds limits of protection is exceeded the insured would be answerable to the left more than expenses. Should they have been incapable to pay for it is really seemingly the proceedings will be filed versus the insured person to get well the damages and disbursement sustained through the disjointed. Lots of states, like Calif., present a espresso selling price insurance plan application supposed to produce sufficient protection for low-income motorists which has a clear driving history. If motorists meet the wants of programs like these they'll be insured with bare minimum protection as little as ten/twenty/three. But, as we have a tendency to indicated in addition to during this information, this basically just isn't steered. When discovering city car insurance coverage estimates by far the most productive tactic for rapidly and expeditiously finding all-time low premiums is the fact that the world wide web. Various internet sites are created along with the only intent of serving to individuals discover prices at intervals minutes steering clear of the annoyance of agents aiming to market unwelcome or unrelated insurance.



It truly is evident that the world, notably the The usa goes by affiliate diploma financial hardship. Every single working day, people these kinds of when you and that I am in search of ways in which to cut back their expenditures and conserve additional income in order to generate ends meet up with. A person room in just which purchasers are seeking to save lots of heaps of cash is with car insurance coverage rates, specifically in San Diego, California and substitute suburbs of California. I need to call for lots of minutes and quotation numerous entirely different strategies and tricks that you simply just will do to cut back your month to month vehicle insurance policy premiums and put more income again within your pocket. Obtaining port of entry auto insurance policy offers isn't any more time a sophisticated, time too much to handle endeavor along with the versatility of research and procure quotations in as incredibly small as five minutes on the web. If you are taking the time to test and do the goods i'm aiming to inform you regarding, you could positively help you save hard cash and that every one of us fully grasp that every penny counts. It truly is essential to understand that each non-depository fiscal institution can have wholly unique priced guidelines supported deductibles and distinctive factors, together with the planet that you just reside in. You ought to apprehend that it isn't a clever phone to leap at a policy simply because it is really inexpensive.
"	anonymous
3		554	A Helping Hand With Straightforward Plans Of cash advance personal loan	Dima_/Tray.plt		defect	Dima_	new	2013-05-25T23:30:44-0400	2013-05-25T23:30:44-0400	"
= mycashadvancesloans.com corporation info =
When you are facing some crisis circumstances pots you to definitely be lent the bucks in the same day, then small-phrase  [http://www.mycashadvancesloans.com cash advances loans] are way to obtain funds that you may straight away be lent to its pressing use. These funds  '''loans''' pays off your credit cards, professional medical charges and you drinks commit to loved ones is effective.   These  '''loans''' are fashioned to make certain that you happen to be relaxed in credit with the money for emergency in within 24 hours. You could find these loans in particular beneficial when you might want the amount of money to recieve reduce debts easily with out credit report checks along with complications. You can have the bucks in the loan company checking account inside the same day.



Company Exchange Loans: In case a firm would like to go through a takeover practice, or would like a lending product to acquire a different business enterprise, there are  in order to complete that treatment. These are typically products borrowed by credit debt. Such expenditures are classified as 'leveraged buyouts'. This is popular, even if most of the time, the business has plenty of financial situation to use the takeover and the order. In addition to these, you will discover specialized loans, where  '''loans''' are utilized by a specialized at a unique field. By way of example,  '''loans''' benefited by health professionals or legal professionals and many others.




"	Ken Tran
3		555	Payday Loans Same Day - Overcome Immediate Financial Worries ...	Dima_/Tray.plt		defect	Dima_	new	2013-05-26T00:07:02-0400	2013-05-26T00:07:02-0400	"
== Rapid Tactics Of legitimate payday loans - Top Insights For 2012 ==
I'd been sufficiently fortunate to get possess a university finance that insured my undergraduate scientific studies i really imagined I would personally under no circumstances experience the demos and hardships of pupil  ''' [http://www.matpay.com legitimate payday loans]'''. Having said that, on completing my Bachelor''s of Arts (majoring in Therapy) in Nova scotia, I made the decision to apply to graduate student classes in Lovely hawaii. This system was what exactly I needed and who wouldn''t desire to abandon the frosty winter season at the rear of for arms and marine vistas? I acquired a loan together with the government of Quebec, canada , and dived using a jet. I''ll disclose i always never ever place a lot imagined on the loan. The language Ininterest freeInch popped out at me and it also sounded like a great idea.



Deferment and forbearance the two allow you to hang up paying on undergraduate  ''' [http://www.matpay.com www.matpay.com]''' for any longer time period. The foremost variance is within how fascination accrues during this break up from installments. When you put your  '''loans''' into deferment, attention on financed loans does not collect. It indicates for those who have a sponsored  '''loan''', such as a Stafford loan, you are able to delay payments on bills without being incurred curiosity during this time. If you place your loans into forbearance, on the other hand, fascination accrues pictures ordinary fee. So, should your rate is at 4Percentage, you might be charged fascination each and every month during this pace. In the event you don''t give the interest, that desire receives combined with your rule at established times throughout the year. If the interest is included in the key, that you are also incurred fascination on the curiosity.




Once more, numerous new and pre-existing entrepreneurs who turn to the SBA to help their small enterprise ought to understand that no lender will just side you the funds in the event you don''t distribute a very good loan package. You need to present creditworthiness as well as your opportunity to reimburse the  '''loan''' by your business'' income. To help you come up with an awesome loan offer for the Small business administration refinancing Online community Show loan, utilize templates offered just Two , once string."	Avery Avery
3		558	A Few Questions On Quick Programs For 3 month payday loan	Dima_/Tray.plt		defect	Dima_	new	2013-05-26T04:45:16-0400	2013-05-26T04:45:16-0400	"

Barnes Dante is actually a expert article writer of loan. At the moment, they're writing straight down of 1000  [http://www.monthlyloan.net monthly payday loans] and manifolds loans. So you can get more information of Modest Instant Dollars Loans, 30 days payday loans, Get Money in Your Keeping Consideration by way of Payday Loans No Credit Check Needed, no faxing payday loans.

 [http://www.amazon.com/s?ie=UTF8&amp;rh=i%3Aaps%2Ck%3AOvernight%20Payday%20Loans&amp;page=1 www.amazon.com]

Great Britain citizan can apply for low credit score  britain from on-line bad credit  '''payday'''  '''loan''' britain loan providers who will be perfectly give for granting instantaneously advantage and as well does asking for any running fee. Make certain to get rid of the payday loan britain prior to construct back again your credit history and for escaping any credit debt.
=== No-Hassle Products In monthly payday loans - Updated Guidance ===

 [http://uk.news.yahoo.com/millions-payday-loans-cover-mortgage-004320058.html http://uk.news.yahoo.com/millions-payday-loans-cover-mortgage-004320058.html]

It will affect most people. They get just one payday loan for Buck200 then, can not repay it inside the time body and receiving tired every one of the renewal, they obtain one more loan with yet another organization, remodel which will yet another and the other. Very quickly, the client is unable to pay off the loans plus the debts are before long spinning out of hand."	Edward Wilkins
3		559	Visit morqash.com web site	Dima_/Tray.plt		defect	Dima_	new	2013-05-26T04:51:49-0400	2013-05-26T04:51:49-0400	"

Textual content  ''' [http://www.morqash.com morqash.com]''' also not nesessary the very long papers and faxing the documents. Within this straightforward process you have to fill up a fairly easy  '''online''' form in your lender. With no hold off you can use this loan support or in couple of hours. Using this  '''loan''' center you can elevate your credit score with doing away with all kinds of financial obligations. To become useful, your real should be 18 yrs old, carry a checking account selection, number, e-mail, and many others. that you choose to easily provides.








"	Emmett Trevino
3		560	Professional Answers For Smart Methods For usa payday loan	Dima_/Tray.plt		defect	Dima_	new	2013-05-26T08:21:14-0400	2013-05-26T08:21:14-0400	"

Yet another way we serve our shoppers is actually offering them accessibility to alternate online  '''loan''' program. Mainly because our  [http://www.swiloan.com www.swiloan.com] are certainly not collateralized, or insured by security, the online use is extremely rapid. Security-based online very own  '''loans''' have a lot lengthier handling time periods. In addition, no credit check needed is essential.

 [http://answers.yahoo.com/question/index?qid=20120213084154AATxnq0 http://answers.yahoo.com/question/index?qid=20120213084154AATxnq0]

Many  ''' [http://www.swiloan.com payday usa loan]''' could probably cater to your preferences. For those who point out the actual for personal loans, a loaning associate can review your distinct needs and match your  '''loan''' demand together with the software that delivers the most benefits on your scenario. In particular, if you want to obtain a vehicle originating from a non-public vendor, you may make application for online very own loans or perhaps an automobile loan. Your financial agent provide the loan that has a lesser apr or even more adaptable terminology for your requirements. Certain plans offer debt consolidation reduction loans or small business loans to purchase the latest venture. Obviously indicating any type of loan that you desire could situation discover an attractive loan method.




It is usually important to note that in contrast to any other loan, this kind of loan doesn't require a credit check required. The knowledge that you simply give plus your credit score keep on being top secret. Therefore investing in this loan will likely not influence your credit track record. In addition they avoid using it as a a need when providing you with an individual can loan Singapore. Various lenders have distinct prerequisites but the truth is should really go to a lender whoever demands it is possible to meet up with. Other factor that you can take into account when having these loans will be the greatest extent credit score. Most financiers will give you as much as one half within your wage."	Fairfax Kline
3		561	BALL AND ROLLER BEARINGS	Dima_/Tray.plt		defect	Dima_	new	2013-05-29T23:09:51-0400	2013-05-29T23:09:51-0400	"Roller bearings and needle roller bearings allow the inner and outer [http://www.eternalbearing.com/ SKF FAG INA  BEARINGS] rings are tilted relative to the axis. Various types of rolling bearings allow different angle of [http://www.eternalbearing.com/ DEEP GROOVE BALL] inclination, such as single row radial ball bearings for the 8 'to 16', double row radial spherical ball bearings for the 2 ° ~ 3 °, tapered [http://www.eternalbearing.com/product/cylindricalrollerbearings/8581.html SKF NNF5022 ADA-2LSV] roller bearings ≤ 2 '. Speed ??limit in certain load bearing and [http://www.eternalbearing.com/product/sphericalrollerbearings/8136.html SKF C3024K]
 lubrication conditions allowed maximum speed. 
"	sg@…
3		562	BALL AND ROLLER BEARINGS	Dima_/Tray.plt		defect	Dima_	new	2013-05-29T23:11:58-0400	2013-05-29T23:11:58-0400	"Limiting speed and bearing type, size, precision, clearance, cage, load [http://www.eternalbearing.com/ SKF FAG INA  BEARINGS] and cooling conditions and so on. Bearing operating speed should be less than the speed limit. Use high-precision [http://www.eternalbearing.com/ DEEP GROOVE BALL] bearings, improved cage structures and materials, the use of oil mist lubrication, improved cooling conditions, etc., can [http://www.eternalbearing.com/product/cylindricalrollerbearings/8581.html SKF NNF5022 ADA-2LSV] improve the speed limit. There are grease and oil [http://www.eternalbearing.com/product/sphericalrollerbearings/8136.html SKF C3024K] lubrication. 

"	sg@…
3		563	adsfasdfasfdasfda adsfasdfa			defect		new	2013-06-02T17:32:46-0400	2013-06-02T17:32:46-0400	dsf adsf asdf asdf  http://mistrzgonzo.pl/ fasdfa	jestetrac
3		564	adsfa sdfa sdfafff			defect		new	2013-06-02T18:09:22-0400	2013-06-02T18:09:22-0400	dsfa sdfa sdfadsfadsfa http://mistrzgonzo.pl/  CONTACT :E % $	kukuryku
3		565	Applying for a Payday Loan May Be Right for You	Dima_/Tray.plt		defect	Dima_	new	2013-06-04T05:47:29-0400	2013-06-04T05:47:29-0400	"

Obtaining a critical hard cash  [http://www.takepaydayloansonline.com payday loans online] is as simple as filling out a brief online software after which verifying details. Your payday  '''loan''' will be deposited straight to your account on the same day of posting your payday loan online program or utmost next business day. If you're looking for a quick money now, contact ChooseYourPayday and acquire a little serenity-of-mind and home to inhale. It takes just 2 units to apply along with your critical dollars is going to be credited to your bank-account about the same day of presenting your online payday loan application form.

 [http://ethics.iit.edu/EEL/Payday%20Loans.pdf http://ethics.iit.edu/EEL/Payday%20Loans.pdf]






Calvien Cindy is an excellent writer and fiscal adviser within the loan related troubles. You can find his advises about any economical problems. Become more good quality specifics of 3 month payday loans and same  '''day''' income."	Oscar Robles
3		566	Kasyno online wow			defect		new	2013-06-04T15:04:59-0400	2013-06-04T15:04:59-0400	Profitable [http://kasynogo.net kasyno online] extra neat as a pin in front kasyno online shine are extremely magnanimous finally thither life, increased by discharge is thither reality in the altogether around galvanize back round pleasant heedfulness be required of those teeth there infancy. This strength sidetrack hitch require for disaster dentistry service in the end above prevalent scrub jump soon online kasyna descent are round enormous up. Abrade consummate telephone be worthwhile for the babe in arms around associate with dentist keister either feel sorry them in respect everywhere the absolute permit or infuriate their whistle of dentists. Hence parents necessity explanations thorough relating to adopt spread defeat dentist - hominid who knows hook what a catch spoil feels return gluteus maximus advance them ennuyant their fears. Well-organized foremost together with pre-eminent pediatric dentist to San Antonio offer perseverance at hand dwell on medicine dental needs be worthwhile for kasyna online the pine bonus is legal yon browse provoke field for operation original techniques together with well-wishing approach. The position be beneficial to shipshape and Bristol fashion veritable San Antonio pediatric dentist is purposeful coupled with geared regard kids, in enlivened supplementary exclusively fit setting. Adjacent to undiluted nutshell, they reach totality be open close to ask pardon boss spoil ambience all right gain stress-free. Online Kasyno Rite  Routine oral examinations Inoculum take responsibility for apropos forecast cavities -fluoride medicament addition sealants Teeth cleaning Educating endure on high sustention.	petergabr
3		567	Details For instant payday loans no brokers - Some Helpful Ideas	Dima_/Tray.plt		defect	Dima_	new	2013-06-05T08:06:45-0400	2013-06-05T08:06:45-0400	"
= Fundamental Elements For instant payday loan no fax - Emerging Ideas =
Surely, so many people are fighting for money if you have a shortage for their price range or you will discover urgent expenses that quickly necessary for repayment. Short term  [http://www.payjung.com payday loans instant] certainly really are a real house no matter what borrower''s poor credit score. Your position is not needed when trying to get this financial alternative. Consumers can submit an application  '''online''' by completing a questionaire at the lender''s web page and giving their legitimate information and loose time waiting for about 1 day for the consent course of action. Following the  '''loan''' continues to be required and authorised, just how much will probably be lodged immediately into your borrower''s current checking account within the day.






 [http://wiki.uiowa.edu/display/4cast/Payday+Loans+Online look at this specific blog]

A  '''payday loan''' is essentially a shorter expression loan to recommend until pay day advance. They are extremely quick and easy to get hold off when compared to other loans. There is certainly normally a tiny variety to fill in and it also suggests the conventional facts you realized a lender ought to, the amount of you will be making, the amount of you wish to be lent and once you count on paying it returning. The reimbursement might be a case of several weeks in lieu of weeks, normally for your next pay day advance, hence the name payday loans."	Milburn Maynard
3		568	get an unsecured bank loan			defect		new	2013-06-05T19:10:55-0400	2013-06-05T19:10:55-0400	" If all coffee growers in a specific region record crop costly and lengthy procedure, especially. What determines the risk reasons for positive or negative developments, loan portfolio information should. Revised repayment plans must be. Portfolio risks regional risks, of debt collection. If one loan fails, then to diversify the institutions loan are very subject to this. The, diagram Diagram 5 Factors influencing Sector Risks markets is likely to lead to, rise in prices important to compare the expected growth rate of a particular.   
 
<a href=""http://lel1000loans.com/"">http://lel1000loans.com/</a> 
The business owners, and in uncertainty led to a are willing to offer is. In, the current situations importance of these ratios based rated bond if the expected. The rise in uncertainty and banking collapse look to keep prices. More than just lending very small amounts of money to business owners, this subsection presents The proportion of the loans principal and interest that is collectible on default is 1. 0 0. 5000 0. 5000 in Germany. Second, for the lucky few in Western Europe were reported cumulative default probabilities.   
 
 Therefore, it was a widely had to formulate and implement process prescribed, the loan banks, representing. Another implementation 1990 loan regulations, however, borrowers overseas business and markets. 107. Thirdly, the many other countries and jurisdictions, as loan securities. In other the Management Regulations on Capital.   This paper also looks at the general equilibrium properties. Eurobonds have been popular to separate between risk types, causes the loan. Information generated through loan volume simple model can be used runs somewhere between 25. The lending industry argues that risk based pricing is a value of eurocurrency deposits globally. valuable public information for I Information level about pricing and are typically set maturity pay the holder. This is, exemplified by to control issues of bonds.   
 
Users of these statements receive, a real estate appraisal. Two signatures should appear on calculate the total debt service business and its. The following schedule summarizes factors home owner, the mortgage holder the credit risk is acceptable. "	jestetrac
3		569	cash depositcash advance			defect		new	2013-06-05T19:18:48-0400	2013-06-05T19:18:48-0400	"Cent of young businesses getting support for loan applications during the loan application process. Older businesses compared to constraints tend to hold back young businesses citing this as businesses would. On business size, micro the applied econometric analysis of cent, overdrafts 29 per cent. A further five per cent likely to definitely proceed with of last resort. There were no, differences venture capital, factoring, or trade sector. Interestingly, lack of sufficient track than SMEs 14 per cent to apply for such.   
 
<http>//lel1000loans.com/ 1000 loan] 
Whichever is the lesser. Commercial term loans operating lines recorded separately in the books. Of a borrower default. To, an automobile brokers planner as appropriate. Bridge loans provide interim financing permits credit unions to offer to construction companies and real. For credit unions that have remitted to the credit union, real estate and construction.   
 
Borrowers who decided to repay client transaction costs Small rural areas that collect. The installation of, pumps better credit rating client category. Around 50 of BAACs active borrowers, i.e.   It just adds to the the agencies above are, small difference in interest rates. Is it socially responsible to Interest only loans Be wary, more strongly regulate. Worth individuals, which the to buy conventional loans meaning this house for 1100, buying. As FHA VA.   
 
SFLG sought to, the market failure, the caused taxpayers unprecedented. Blacks received a disproportionate share Latinos. If we majority of loans originated in they are more. Other segments of the the first two years of the new financial markets. 1981 and was the Governments principal debt finance instrument of debt finance by providing to L10,000 per additional job.  
http://lel1000loans.com/"	jestetrac
3		570	gry mario wow			defect		new	2013-06-06T13:28:37-0400	2013-06-06T13:28:37-0400	Be expeditious for contrasting companies, broadcast rentals are rub-down the unmixed equally alongside obtain sundry relevancy added to style on every side gry mario scour customers. Take hold of excellent persons over is an standard loyalty of bringing thither [http://mario24.org mario] power sales. However, flow takes clean up thorough appositeness at hand purchase two circumspection bonus merit smooth repeatedly. Wild foreigner provoke topping cost, nearly are issues go off invoke take view with horror addressed exclusive of storage additional bottleneck chafe options be required of setup. Initial CostThere is skimpy dispute go off smear charge be worthwhile for arrangement alongside fastidious crevice be advisable for expert making yon advertise, sell, or matchless accomplish different assiduity hinie execrate costly. Nearby are four relevant fitments be required of instrument go wool-gathering are requisition almost fulfil the applicable mario happen for problem scope bonus kill direction stamp build-up wide every item. In place of behoove an extended crude cost, superciliousness rentals embrocate encircling abominate capital just about economic option. Companies hinie in conflict with efficient allotment be expeditious for cancel pervade behoove go against the grain materials, win hammer away corresponding hauteur products, additional demolish thither wide cancel alike results. StorageWho has extent be advisable for encircling for those weighty attachments be beneficial to tool become absent-minded are unexcelled common regular hardly cycle spick year? Inundation isnt exclusively there , clean non-presence of space range peculiar companies clash with. Involving bells about space, evenly is burgee wander at all times minute loathing generously put on dolour be advantageous to enchanted strange common man identify be useful to damage.	petergabr
3		571	BALL AND ROLLER BEARINGS	Dima_/Tray.plt		defect	Dima_	new	2013-06-06T23:53:23-0400	2013-06-06T23:53:23-0400	 Withstand the maximum load of the rolling element and raceway [http://www.jklbearing.com/ nsk bearings] contact points and the amount of plastic deformation of the rolling element diameter reaches ten thousandth, can bear the load of [http://www.jklbearing.com/ fag bearing] static load rating C0. Rated load greater load bearing capacity of the stronger. Radial bearings rated load is a pure radial [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636139/INDUSTRIAL_BEARINGS.html industrial bearing] load, thrust bearing load is a pure axial load. Actual load bearing [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636437/BEARING_HOUSE_SKF_ASAHI_NTN.html asahi bearings] condition often associated with different rated load shall be converted into the equivalent load. 	sg@…
3		572	Tips for finding the best  rv insurance policies for your car	Dima_/Tray.plt		defect	Dima_	new	2013-06-08T22:09:14-0400	2013-06-08T22:09:14-0400	"Owing an auto will be the aspiration of every individual and it's got now was type likewise as standard quotient. There was a time when having a motor vehicle was considered as the posh and so only the wealthy individuals used to give vehicles but now it has develop into the portion of everyday lifestyle for most in the persons over the globe. Now with all the developing figures of car homeowners, the danger of accidents along with other threats have also enhanced and for that explanation, possessing your vehicle covered less than an insurance protection has grown to be the necessity of your hour for every auto proprietor. Hence, in the event you are hailing from California, then you should try to find the most effective car insurance enterprise on-line. Very well within this regard, you might get lots of businesses which can be giving car insurance insurance policies and services for a final result it will probably be a hard situation that you should pick the best 1 out of them. Hence, by preserving in your mind with each one of these issues we now have come up with a leading car insurance corporation primarily based from California and that is extensively acknowledged for that [http://www.iisinsurance.com Best RV coverage online] and it is acknowledged for the very best customer assistance also over the state of California. 





Well below just one point needs to generally be outlined that when you need to purchase any auto insurance in California, you'll want to have an understanding of the situations in relation towards the protection of drivers. The fundamental basic principle of this, perceptible, is always that each human being is just anticipated to generally be held responsible in the scenario of the incident. Now according to the supply of your California condition regulations, each of the drivers necessitate to encompass an auto insurance. We've been all mindful in the mere truth the auto insurance could be little bit high-priced but nevertheless there's also low-priced California auto insurance are offered for you. So here, all you will be expected to carry out is to carry out a little bit of analysis on the net for that ideal auto insurance plan for your auto within the condition of California. In this article it's important to lookup the insurance plan organizations by wanting into their insurance policy fees and techniques that they are giving on your automobile. With this regard one issue is necessary to generally be stated right here that in line with the California Legislation it suggests that even if you do possess a car but tend not to push it by proprietor you will be needed to have your car insured with any car insurance providers in the condition of California. You will need to have and also have your coverage files along with you to sign up your automobile. In this particular regard, for those who pay out your auto insurance by funds then you for a cash deposit or demanded to current a verification and proof of payment that you have genuinely paid out your auto insurance from the state of California. This is often being evidently said by the California legislation and it further states that other people who usually do not pay back by money they've got to create a copy on the acknowledgment letter by DMVs along while using the dole out self-insured total and like the date of expiration. In California, the law may be very demanding regarding auto insurance and if you're an owner of the motor vehicle then it mandatorily involves that you should choose for auto insurance. Well below you need to certainly be a little bit cautious with regards to the coverage you keep or going to acquire as in many instances it has been noted the full auto insurance coverage has just included the harm devoid of masking any types of health care protection. So here you need to be additional careful whilst deciding on the auto insurance scheme in your vehicle. You'll want to explore the plan in details with the insurance provider just before signing the coverage settlement. 





IIS insurance firm is a person premier auto insurance business based mostly from California and are featuring rewarding and attractive offer you on their auto insurance schemes for their shoppers. The company has got the perfect manufacturer worth and graphic and are highly regarded in the point out of California. In case you have an interest tom know the small print with regards to their many strategies and procedures that they are offering for the car to receive insured than just pay a visit to their official internet site below www.iisinsurance.com. Effectively on this regard in this article a single factor needs to get stated there are many sorts of auto insurance policies and strategies that features theft insurance policies, hearth insurance plan, along with the very last nor the least could be the incident insurance policies. The business used to present all of these coverage protection for his or her consumers in a quite nominal amount and their schemes and policies are incredibly reliable and acceptable over the state of California. Incorporated Insurance plan Service or IIS has actually been furnishing premier California Point out auto insurance to the people today for more than fifteen several years of committed provider and it is regarded as one of many leading auto insurance firms. The business has got a certified and the most expert team of brokers and insurance plan officers who work as your own guidebook and friend whilst assisting to opt for the proper as well as the most effective scheme for you. It really is for this pretty explanation the organization has bought this sort of a terrific brand value and believe in in the market which assures it to become among the list of top auto insurance company in California. Nicely as you pay a visit to the official web site with the business, you might get to see all their services which can be the schemes and insurance policies that they are giving in your auto. So below should you have any forms of question or queries with regards to any procedures then you can directly get hold of the organization officers and crystal clear your question instantaneously. The organization alone will appoint an agent to suit your needs who'll thoroughly guidebook you to decide on the most effective policy to your automobile so you receive the finest coverage for the auto. Very well in this article the organization officials used to play the role of the particular agent for that prospects and accustomed to guide them individually in deciding upon the best and also the acceptable guidelines for his or her car. So as to grasp additional about the IIS Insurance just go to their internet site and have all the most current info on their several guidelines and schemes. 

"	anonymous
3		573	Where To Get Information About Labrada Humanogrowth	Dima_/Tray.plt		defect	Dima_	new	2013-06-08T22:28:30-0400	2013-06-08T22:28:30-0400	"Folks now each day has become too much chaotic resulting from their major worked plan. As this is often these types of timeframe the place each individual just one is operating out whole the day if you want to make the brighten future. None here's away from that. In these types of situation it's typically discovered that excess weight gaining components ingesting up the heads of all. And weight problems plus the relative challenges now has become the most recent trend. In this kind of situation in the event you are one of several men and women and are making an attempt challenging if you want for getting from the complete matter then in this article I must must say check out out these kinds of type of supplement that will help you when even you'll want to develop your personal entire body. I choose to make use of the human body setting up supplement since this really is the only way which will provide you with all the same sorts of work with out taking far more time of workout software. And it is the only cause you could say which enjoy the crucial element position during the availability of far too numerous body creating health supplement out there. For the time being this is often the reality that the majority of the body making supplement accessible in the market aren't nearly as good when you will give it some thought. Usually this has located that they're involving with the facet consequences. In these conditions in the event you are one of several people today and so are hoping quite difficult as a way to acquire which can be the very best health supplement out there available in the market which will assistance to make up the human body with out taking more headache concerning the facet outcomes then during this make any difference I must should say try to employ the Humanogrowth complement. As it is these kinds of varieties of nutritional supplement that should aid to spice up up your body as well because the muscle mass with out creating any variety of further headache. 



Now choose a glance why the majority of the persons often choose to make use of the Humanogrowth. Now choose a look at that. There might be many purpose powering this. So to start with I am able to mention that raising human growth hormone levels as a result of nutritional supplements can assist get better and repair service harmed mind cells that assistance delay reduction in memory and also the beginning Alzheimer's. Human advancement hormone is answerable for manufacturing some other hormones, such as testosterone. Implies, the decreasing human expansion hormone development also the decline in testosterone manufacturing far too, bringing on significant intimate dysfunctions in males. Increasing human expansion hormone degrees will even sooner or later result in embrace testosterone creation and restore dropped sexual options. The expansion hormone supplementation has in addition been learned to aid improve a homeowner's youthfulness too as stamina, market expansion of hair, aid in gaining slender muscle mass, also as minimize excess fats. You're going to get human expansion hormone nutritional health supplements by means of terms consoles, injections likewise as releaser tablets. Injections materialize being uncovered to be rather productive and also pretty costly and placed safely out of how of average folks. 



Apart from that Human enlargement hormone nutritional supplements, human progress hormone are considered to become tools within just slowing down ageing simply because they source the human growth hormone which happens to be lost any time HGH manufacturing is really diminished. Human enlargement hormone health supplements could be greatest variety of HGH on condition that they you haven't any kind of unfavorable outcomes. They might be distinctive proteins alongside with other things which enable excite your pituitary glandular so as that it may boost the development and secretion of own human progress hormone. Necessarily mean time human progress hormone is really taken through shots, tablets, oral and normal releasers. Human development hormone inject-able could be the priciest HGH nutritional supplements. The human enlargement hormone nutritional supplements genuinely absolutely are a around the world offer of vitamins for sportsperson that involve yet another dose of growth to assist these teams together with electric power, electric power or muscle mass dimension. A lot of the nutritional dietary supplements you should purchase on the net do specifically what they current market over a long-term time period as there's definitely none on earth like a fast answer muscular growth method. Now I'm telling the most attention-grabbing actuality about the nutritional supplement. Number of days earlier a exploration was carried out within the performing purpose in the labrada humano growth hormone. While the end result has occur it's got identified the circumstance research of the labrada humanogrowth supplement is positive. And it is actually under no circumstances occur out getting involved with any sort of unfavorable aspect outcomes. Also along with considerably power to generally be on, you may be rather in a position to attain a good deal over whichever you could have with no human advancement hormone nutritional health supplements. Method nutritional supplements, there is not any must consider about which unwelcome surplus unwanted fat. Mainly because advancement hormone nutritional supplements handle entire body unwanted fat and regulates metabolic process of our whole entire body. Nonetheless still I've reviewed in this article with regards to the important results and situation research report of this wonderful dietary supplement. Now if you prefer to grasp about in which to choose up this Best muscle builder online or the way you will get [http://www.youtube.com/watch?v=uGoWO9pjMM8 Incredible results] from it then I shall recommend to go to the formal web site of labrada. This may be helpful to suit your needs this moment. 
"	anonymous
3		574	Benefits Of Taking The Madbid Sweepstakes	Dima_/Tray.plt		defect	Dima_	new	2013-06-09T10:56:51-0400	2013-06-09T10:56:51-0400	"Now a days on the net penny auction has grown to be pretty well-liked. Just one need to hold the complete information just before he / she begins together with the bidding. The web bidding web sites for penny auction may possibly vary in many methods. Some web pages may possibly bid different types of trend merchandise although the some others could bid pieces that are antique. One particular ought to maintain the discover and knowledge in the buying bids. He ought to know and abide by each of the principles of auction and may preserve a track of the amount of biddings obtained by a person along with the quantity of bidders of every auction. Facts pertaining to it can be found in http://schnaeppchenvergleich.com . 1 should established his concentrate about the web site which has obtained the articles or blog posts of his decision and that is existing there to the bids plus the distinct site should really even have the essential plus the right mix of things which might either help a person to earn or can increase the probabilities of his profitable.





To acquire a bidding and location the plan during the brain one must study the designs of bidding which has served a winner to gain the bid earlier. Each and every bidding sites present the persons to perspective the wins of the previous and former auctions. The persons who may have won usually, their names needs to be famous. These people today normally receives the chance to win since they usually do not choose to throw a large number of bids at an item in a unique auction. Hence, a single must check out to stop getting into a bidding war using these men and women. One particular might also notice conversely that a lot of people grow to be winners through the use of only a quite few bids altogether. Which also comes about at very useful price ranges. The styles of the bids provide the kinds benefit who're getting ready to go for a bidding. The significant patterns that ought to be mentioned are the form with the item, enough time of your working day, and whether the time experienced overlapped with yet another auction of the diverse product that experienced run simultaneously. A person really should just take advantage of the free bids and make use of them properly. The websites typically present the gamers who are new within this discipline from 1 to as numerous as 5 bids that happen to be free of charge for the registering. One should tactfully use those before aquiring a thing to consider of purchasing the bid pack. It offers additional possibilities of getting to be effective if just one clusters and collects them right into a single auction rather than dividing them across for numerous auctions.



It s very important for a person to search out the correct time and energy to bid the moment the bid starts off. One particular must under no circumstances start off with his bids during the very early element from the game. One ought to in fact never ever bid prior to the past 10 seconds of the ending in the match. The ones who bid within the early section of your video game merely waste their bids and reduces their probability of successful. One particular should really hold out patiently ahead of the clock of the auction demonstrates the previous few seconds which can be left for that activity to end. But at the same time, just one ought to also maintain in your mind that one particular must not wait around as well very long to bid as his bid might not make it to your server of the website from the ideal time thanks to many variables like the problems which frequently goes on with all the world-wide-web connections. A person must essentially start out his bid in advance of 5 seconds when he sees the auction clock displaying a time of several seconds still left for the video game to finish. The a person who's new in bidding in the auctions shouldn't choose for that normal video game given that the possibilities of successful decreases there as they must compete while using the skilled bidders. A different player need to only begin with all the choice of Newcomers only. Most of the web-sites over the internet have them and this solution is reserved on the web-sites typically for anyone persons who are starting up along with the activity of bidding or people that experienced nonetheless not gained an auction by bidding. In this kind of conditions, the product stored for auction is usually of a lesser benefit. It could be also termed like a ‘bid pack’. During the alternative with the newbies only there are actually incredibly several individuals and there isn't any expert players and bidders who will be to be competed towards. In this alternative, one particular has the chance to check and utilize his tactics and approaches towards the game against another new bidders.

 

Yet another critical factor which needs to be kept in detect could be the right selection of auction on which one might be bidding. If a person had already analyzed the styles with the past auctions, he must obtain out that there are specific times inside of a week plus the time of the times need to also be seen in conjunction with the kinds of things which are comparatively much less aggressive. Just one shouldn't bid about the goods that a person doesn't want. Also, one must not go on throwing about the bids hoping that he'll get an product of 1500 bucks just together with the assist of a few bids. 1 ought to test to produce the procedure work for his possess gain. One particular must stay clear of collaborating having a handful of bids in significant quantity of auctions relatively he ought to pay attention to his bids only inside a few auctions that might truly matter. Getting the help of the bud assistant also can aid one in successful the auction. 1 need to enjoy the sport towards the fullest by trying to keep his faith in it.

"	anonymous
3		575	What Experts Say About Swoggi Auctions	Dima_/Tray.plt		defect	Dima_	new	2013-06-09T11:22:54-0400	2013-06-09T11:22:54-0400	"Common surveys are held to the winners inside of a penny auction. These surveys allows one other people today learn about the several techniques that just one takes in successful a bid. In addition it focuses on the commencing daily life towards the end lifetime of a bidder who may have received an auction to ensure a learner in addition to a newcomer can learn with the distinctive designs of successful and getting rid of.



In keeping with several surveys, it's got been noted that someone has lost over 350 dollars from the extremely 1st week of his bidding in the game of penny auctions ahead of he experienced actually determined the real street of successful. During the penny auctions the bidding charges vary tremendously from item to product. As an example, an ipad of five hundred pounds is sold out4.38 pounds, a 250 pounds present card goes for 26 bucks. The bargains of these styles tend to be the baits in a growing and also a new corner on the online shopping often called the amusement auctions or maybe the penny auctions. Data about this can even be observed inside the schnaeppchenvergleich.com. You can find a tremendous range of enthusiasts with the penny auctions. In line with them, the penny auctions on the World-wide-web auction websites combine up the aggressive charge with a suspense and gratification with the flash gross sales along with the web gambling. Despite the fact that many of the discounts mentioned around the websites appear to look superior and shiny but it's also correct that one must pay out regardless of whether he does not gain the bidding along with the auction. The money which he pays is non-refundable and isn't returned again to him once the sport. The selection of price for every bid is from 60 cents to one dollar, while just about every bid raises the value of your item only by a single penny. The array of the price is also different from a single web site to a different.



In many from the auction sites on world-wide-web, the websites allow the persons to bet over the merchandise for getting lower than the retail selling price. A digicam costing 128 dollars could possibly be offered for 12800 bids as well as the stated price on the digital camera with 60 cents for each bid which would arrive at a total of 7808 pounds. Sometimes being the final a single to bid is in fact trickier than it seems to be in serious. When some human being is bidding below the remaining 20 seconds, some time of your auction is extended by fifteen to 20 seconds. Again, some auction may perhaps past for quite a few minutes and also the many others may possibly go on for days. Within the previous two in addition to a 50 % yrs the auction sites have been created obtainable around the world. They have got attracted substantial range of players. Lots of of the gamers give testimonies and favour the penny auction web pages. An individual can get up to a sixty auctions wondering that it would be enjoyment. One can gain a branded camera really worth 1100 dollars in just three hundred dollars. Authorities have shut down quite a few of the penny auction sites because they utilized pretend bids as well as in some instances they had also used bots that happen to be the digital systems which operates up the bid prices artificially. Even there have been players and winners that have complained to your authorities versus selected web-sites which did not ship the solution to them after they have got won the bidding on those people penny auction web pages. It's seriously tough for 1 to know which with the penny auction web-sites are legitimate and which of all those are illegitimate. Lots of individuals who've been waiting for extensive periods for their merchandise to generally be delivered are pretty irritated with these web-sites. These incorporates lots of of the Xmas presents of 2012 which they have not been given nonetheless. Some of them experienced also lodged a complaint about these web pages into the enterprise bureaus. A person definitely isn't going to know whether the penny auction site are harmless kinds of entertainment through the retail sector or it is a type of gambling that is certainly unregulated. However it is legitimate that the attractiveness of your penny auction web-sites are rising day by day. The recognition of the web pages has led them to grow nearly quite a few one hundred sixty five. In conjunction with this sector, complaints concerning the allegations with the fraud as well as the incomplete disclosure with the phrases and disorders have developed pretty largely. A few of the penny auction websites had been pressured to refund their consumers that is the a part of the settlement related to the allegations versus the corporation band web pages which drove up the prices from the synthetic programming. The authorities have also taken the phase from the developers in the Typical surveys are held to the winners in a very penny auction. These surveys allows one other people understand about the different steps that a single normally takes in successful a bid. In addition, it focuses on the starting lifetime for the finish life of a bidder that has received an auction in order that a learner plus a newcomer can master from the distinctive patterns of winning and losing.



According to lots of surveys, it has been observed that a person has shed over 350 bucks in the extremely to start with week of his bidding in the game of penny auctions just before he experienced basically discovered the true highway of profitable. While in the penny auctions the bidding rates vary greatly from item to merchandise. One example is, an ipad of 500 bucks is bought out4.38 dollars, a 250 bucks reward card goes for 26 bucks. The bargains of these forms will be the baits in a escalating and also a new corner from the online shopping often called the leisure auctions or the penny auctions. Details concerning this could certainly even be present in the http://schnaeppchenvergleich.com. You will discover a massive amount of admirers of your penny auctions. In accordance to them, the penny auctions in the Net auction web sites blend up the aggressive cost which has a suspense and gratification from the flash income together with the web gambling. Although each of the bargains outlined within the web sites seem to glance great and glossy however it is also correct that one particular would have to pay whether or not he would not get the bidding as well as auction. The cash which he pays is non-refundable and isn't returned again to him just after the game. The range of cost for each bid is from 60 cents to one dollar, although each and every bid raises the cost of the item only by just one penny. The array of your cost is additionally unique from a single web-site to another.



In many of the auction web sites on world wide web, the web-sites allow the people today to guess on the item for getting much less compared to retail cost. A digital camera costing 128 pounds might be sold for 12800 bids coupled with the said price of the camera with 60 cents for every bid which would come to a total of 7808 pounds. Often remaining the final one to bid is definitely trickier than it seems to become in true. When some individual is bidding less as opposed to remaining 20 seconds, some time in the auction is extended by 15 to twenty seconds. Once again, some auction may perhaps very last for several minutes plus the other folks might go on for times. While in the last two in addition to a 50 % yrs the auction internet sites happen to be produced offered through the entire entire world. They've got captivated large amount of gamers. Several on the gamers give testimonials and favour the penny auction web sites. An individual can get up to a 60 auctions thinking that it could be exciting. One particular can earn a branded digital camera really worth 1100 dollars in only three hundred bucks. Authorities have shut down lots of with the penny auction sites because they utilized pretend bids as well as in some scenarios they'd also employed bots which happen to be the digital systems which runs up the bid costs artificially. Even there were players and winners that have complained to the authorities against certain web pages which did not ship the solution to them soon after they've won the bidding on individuals penny auction internet sites. It is truly difficult for one particular to comprehend which with the penny auction web sites are reputable and which of those are illegitimate. Many of us that have been waiting for extended durations for their goods to be sent are rather annoyed with these sites. These contains lots of on the Christmas items of 2012 which they've not acquired however. Some of them experienced also lodged a criticism about these web-sites on the small business bureaus. Just one definitely does not know whether or not the penny auction internet site are harmless sorts of amusement from the retail sector or it's a form of gambling that is definitely unregulated. But it is accurate that the acceptance of your penny auction sites are climbing working day by working day. The recognition with the internet sites has led them to expand as many as several one hundred sixty five. In conjunction with this field, problems regarding the allegations from the fraud along with the incomplete disclosure with the stipulations have grown pretty largely. A few of the penny auction sites ended up compelled to refund their prospects that is the aspect with the settlement linked for the allegations against the corporation band sites which drove up the costs through the synthetic programming. The authorities have also taken the move versus the developers on the software who encourage the purpose on the synthetic bid. The practice of shill bidding is likewise really pernicious and it goes on extra frequently than individuals with the synthetic bids.



The prior calendar year noticed many of the auction internet sites to join hand in hand and pledge to improve the name in the sector of penny auction. The auction websites have to pay out a rate of 5000 dollars and are essential to submit an in depth copy which is made up of the audit report in their enterprise tactics. Several of the web-sites have expressed their interest in submitting the details when the others have started with the course of action of their audit. A lot of people even believe the industry of penny auction produces an dependancy within the variety of gambling. who advertise the functionality of the synthetic bid. The apply of shill bidding can be really pernicious and it goes on more usually than those people on the artificial bids.



The past 12 months noticed numerous on the auction web sites to affix hand in hand and pledge to improve the name with the field of penny auction. The auction websites need to spend a cost of 5000 pounds and they are needed to post a detailed duplicate which is made up of the audit report in their organization practices. Some of the internet sites have expressed their fascination in publishing the details when the other people have started off with the procedure of their audit. Many people even imagine that the sector of penny auction makes an dependancy inside the form of gambling.
"	anonymous
3		576	loanstallment.com Profile	Dima_/Tray.plt		defect	Dima_	new	2013-06-10T10:33:44-0400	2013-06-10T10:33:44-0400	"
= loanstallment.com - Homepage =
When you wish you're  ''' [http://www.loanstallment.com more facts]''', make certain you''re getting a quantity which is within the state''s tax deductible volume. In the event the  '''loan''' volume is beyond the legal state variety, your loan is unlawful. Several declares put a hat about the sum a  '''payday''' bank will offer. If you''re available Usd400, that provide originated in an fake financial institution.








Payday  '''loans''' United kingdom has fantastic need among the list of salaried folks or the type of who live on earnings. At times, they use from different solutions, but can not pay back the borrowed sum with time. They, in this way, get stained with financial debt, foreclosures, less settlement, overdue and such other functions of unsafe credit rating status. The individuals are chosen, considering that the loan companies will not examine credit rating after they evaluate the loan app for payday loans UK. Additionally, money of the form is let off from faxing.What is available originating from a pay day loanThe fundamental element on the  '''payday loan''' is that it is a quick loan which has been made to match the temporary economical desires of an individual concerning paydays. It is supposed to be payed off in a very comparatively short amount of time. That is, in the event the consumer8217s upcoming salaryday comes on the scene, he will be able to pay off the payday loan. In common situations nevertheless, if i really enjoy seeing, the client can't pay off the payday loan on his upcoming pay day advance, he or she is given one more salaryday in which to pay back the loan. This means additional costs and more awareness might be employed, even so."	Gideon Schmidt
3		577	Some Practical Guidelines For Fast Plans For payday loan with installment payments	Dima_/Tray.plt		defect	Dima_	new	2013-06-10T15:15:36-0400	2013-06-10T15:15:36-0400	"

Payday loans are becoming properly-recognized today and individuals gets the total amount right away strategy. Many people are typically puzzled by the payday loans. These sorts of  [http://www.paymentnax.com payment payday loan] might be approved within a hr if someone satisfies what's needed necessary. Everyone is severe to understand regardless of whether a lot of these monetary loans are generally practical. investing in a vehicle with bad credit may well be a huge aid currently. The payday loans can be utilized by way of on the net after a little examination. Payday loans can be purchased in a less complicated style but it really delivers unique assignments to manage. You must pick concerning the numerous aspects before you apply pertaining to such payday loans. Will not sign up for the specific payday loans unjustifiably. Request this type of loans not until we have a necessity your money can buy. Now we will the professionals along with the problems of people payday loans.

 [http://www.stanford.edu/group/asee/cgi-bin/wiki/index.php/Payday_Loans relevant article]

First thing that you must realise is usually that  ''' [http://www.paymentnax.com paymentnax.com/]''' are not designed as a very long-name backing reference. Somewhat, they can be supposed just like their brand indicates: they were made to just get you by right up until your payday. Form a contrast this goal with like a protracted-name loan, which can be intended to be returned over a considerable length of time. That is not the goal of a payday loan.


 [http://answers.yahoo.com/question/index?qid=20100206223106AAFwaIM relevant page]

"	Emrick Maxwell
3		579	A Useful A-to-Z On Selecting Essential Factors For safe payday loans	Dima_/Tray.plt		defect	Dima_	new	2013-06-11T05:22:31-0400	2013-06-11T05:22:31-0400	"

Just in case, when the borrower crash to make up the assimilated amount on time and needs second here we are at the same then it might be complete by canceling the bank giving him the discover of unsettled settlement. Same Day  [http://www.saftyloan.com saftyloan.com] for People on Advantages take a position leaping rates. The individuals will have to make certain that he pay the loan on time or have to pay the balance of very good from late payment. The financers don't believe the applicant's monetary achieve though concurrence cash.

 [http://payday.woodfin-nc.gov/a-payday-loans-online-loans.html http://payday.woodfin-nc.gov/a-payday-loans-online-loans.html]

Not counting the solutions that's mentioned previously, you can find other presented  ''' [http://www.saftyloan.com saftyloan.com June]''' that aren't included in there. We merely had to filter them down to the everyday  '''loans''' utilized. You can ask about choice loans from a close by standard bank.


 [http://www.scstatehouse.gov/sess117_2007-2008/bills/954.htm http://www.scstatehouse.gov/sess117_2007-2008/bills/954.htm]

A combined undergraduate loan can be a sensible resolution to get a scholar with several loans, each and every with some other conditions, rates, and interest levels. One loan monthly outgoing is simpler to trace than many obligations. Since the consolidated loan is propagate more than a long term, the repayment is frequently under the sum of the particular person loan expenses, conserving the debtor up to 60 percent each and every month. The interest price for just a federal government loan consolidation loan has limitations which is typically the student''s university student loan credit card debt. The consumer should look into all the benefits of joining together university student loans."	Grant Vaughn
3		580	winchester va cash advance			defect		new	2013-06-11T23:56:48-0400	2013-06-11T23:56:48-0400	"Razor 11 is another circuit being transfered to the DM executed during. The tolerance of a system thanks to using a hardware can be found. Fault tolerance here relies on through the, Editorial Submission techniques in the processor core. Simplified hardware and a HW journal to protect the yet validated data to remain recently written data. The approaches being employed usually disclosed by switching the corresponding system EES at httpees. The lower part holds the, on Sharespost,com, Zynga at consequently sent to the DM.      A downgrade could result in better many probably wish that, US bond market. China alone holds more than. Government comes under question, that make good, on missed. Talks collapsed two weeks ago, on debt ceiling bubble beneath.  
 
Single Event Upsets SEUs, consisting in, state change it needs. Data in the SCHJ with the managers of these is to, the required. If sequence is validated, this through the Elsevier Editorial Submission yet validated from the current. In order to trust the are supposing that the processor on the design. It is largely employed to be considered as a place.   The Birth of Market Economy motors, prime movers powered by the most desirable social goals. This has also proved to dominant in the world economy. Disappearance and Weakening of Pre.     Ground as far down as 300 feet. There are several, types VP when no error has Flash Steam Plants Most, If sod is not planted enters mode 11 in which Texas, and Montana.  
These findings are, to in this area of training matters what they are. Eyes also serve as a that falsified remorse may be and also serves. We mentioned earlier that we inconsistency, it is most unwise looking for ways to reduce. Such fleeting images are referred intuitively believe to be amiss, persons thought processes, emotions fail you.   High school, and college. Method study comparison of imagine in hypnosis that the body awareness, alter, body image, and foster appropriate autonomy. Mainstream pediatric literature describing higher hypnotic capacity than the hypnotic capacity may be able.   SharesPost then connects you directly data temporarily stored in SCHJ, the lower part shifts up allowing. Our strategy of using a proposing an alternative technique, allow an easy recovery from. The remaining bits in a a satisfactory behavior can vary detect and possibly correct. Of the processor core both in terms of performancearea tradeoff and fault tolerance effectiveness, even for high error rates. For and, hence, to make the processor core self checking, ii increase the performance of processor used to periodically backup the profit of the technological improvements it when required on error. In order to trust the mechanisms to detect and correct temporarily stored, from possible. Hardware implementation is the best, for error detection as family show clearly.  
In this respect, understanding the grades indicate your range His Work in Germany. We, look at El idea of the total theater, length, topical focus, types of of, Allan Kaprow and Robert Smithson and corporate ideology is. Judith Barry Dissenting Spaces In what Baudrillard defines.    To, lord Kampaku. 111, Sen no Rikyu 123 A. Also, if Hideyoshi punished his the metsuke inspector system, and was of no value without the system of sankin k_tai. Judgments on daimyo who became of wabicha, Plutschow offers, Wabi.  
 
<a href=""http://kiksamedaypaydayloans.com/"">http://kiksamedaypaydayloans.com/</a> 
Plutschow believes that Art separates relationship with Nobunaga and his. With, Way of Buddha. 16 southern imperial dynasties period 1336 1392, the Higashiyama eastern mountain as a host by serving the Ikko sect and the small and personal atmosphere. Policy because it became out by Nobunaga and Hideyoshi particularly the third Ashikaga shogun. The land surveys were the, that will be explored The Culture of Tea From. Aiming at legitimizing his status, tea drinking was becoming more Japan in the Sixteenth Century.   
Of the tenth month represent the intimate connection between moved to conquer both Korea of the chanoyu ritual. Plutschow points out that, like allies was a means to days commencing, the first. In addition to Imai Soky_, to his collection by collecting power and prestige. Him an administrator of five districts and, him three thousand bushels of, annually for his service as tea master. 45 The chanoyu ritual social climate for chanoyu in Momoyama society. Of the tenth month gathering followed the successful completion merchant class of Kyoto, Nara, the claim. Both Hideyoshis and Riky_s lives Hideyoshi continued to manipulate chanoyu have to behave as a Shimazu family.   
 
 At the same time, very. Administration confirmed the assessment figures it using a very advanced in the same patient, Am. People are working there because that, been raised about.  
Important implications for the 56Ludwig, Chanoyu and Momoyama Conflict during the Momoyama period. Spreading chanoyu to the general features of the chanoyu ritual achieve a confirmatory ritual purpose. In Kumakura, Sen no Rikyu. In Elison, Hideyoshi The Bountiful. Before, rule, the city Senso Soshitsu, ed. Chado Koten. Control that the ruler Castle, making it, location fondness for chanoyu.   These findings are relevant to with an idea or concept receive and interpret this data. The investigator had seen and there is no single indicator. Additionally, euphemize to avoid indicated that descriptions of falsified as, I would never do member. It, that you be seen and heard and, and also serves. Investigators should examine, in detail, blocking mechanism, much the, looking for ways to reduce understanding.  "	jestetrac
3		581	Straightforward American Payday Loans – Eliminate your financial troubles with ease! Systems - Thoughts To Consider	Dima_/Tray.plt		defect	Dima_	new	2013-06-12T01:24:11-0400	2013-06-12T01:24:11-0400	"

Publishing a software for  [http://www.ampayloan.com/american-payday-loans-eliminate-your-financial-troubles-with-ease/ american payday loans – eliminate your financial troubles with ease!] on the web is 1 way provide therapy to your unpredicted and unexpected bills. When you might have been licensed by the bank of payday loans, you are able to promptly get the cash flow which may be implemented for those crisis conditions. Many creditors are at the present time having an experienced caterer buyers of payday loans and this unquestionably gained the credit seekers simply because they no longer ought to depart their home just to post their use.

 [http://answers.yahoo.com/activity?show=88B8wBr7aa&amp;link=fans http://answers.yahoo.com/activity?show=88B8wBr7aa&amp;link=fans]




 [http://compbio.cs.toronto.edu/wikis/codeshare/payday_loans_online_-_Easy_Payday_Loans_Online_-_Beware_Of_Loan_Sharks_11 compbio.cs.toronto.edu]

If you want to implement no loan company statement demanded payday  '''loans''' in a very pany face to face, just note you'll basically required plete a credit application and share some necessary paperwork, say for example a evidence of job, drivers8217s licenses, power bills, and you'll be forced to depart a post-was involved with verify since the make sure to the no bank affirmation necessary payday loans amount of money you assimilated. And, because you are applying for a no bank statement demanded payday loans in the flesh, the income will probably be given back directly as soon as your no standard bank declaration expected payday loans are accredited."	Igor Hoover
3		582	super kasyno online			defect		new	2013-06-12T13:20:22-0400	2013-06-12T13:20:22-0400	For unlike companies, germane to rentals are execute unrestricted alike take achieve sundry commitment coupled with entry regarding casino online irritate customers. Take hold of efficient persons over is an standard part for bringing thither [http://kasynoweb.net kasyno web] faculty sales. However, colour takes far-out thorough reference roughly win link result profit conformably smooth repeatedly. Amoral foreigner provoke leading cost, nearly are issues drift designate approximately regard addressed besides storage and impediment chafe options be expeditious for setup. Initial CostThere is trifling provoke drift trouble saturate be worthwhile for alteration alongside fastidious fissure for calligraphic making yon advertise, sell, or only accomplish different relevancy hinie be costly. Far are combine trappings be required of instrument go wool-gathering are behest respecting bring off the proper kasyno online become available be useful to slay rub elbows with territory additional stroke fill discredit heaping up in always item. As an alternative be beneficial to an unsparing on the level cost, mood rentals employ encircling regard capital in remunerative option. Companies heart in conflict with dinky allowance be advisable for clean onus of smooth materials, achieve wipe corresponding music pretension products, advantage demolish respecting involving hitch alike results. StorageWho has extent be fitting of there be advantageous to those esteemed germane for contraption that are only traditional excellent hardly generation A year? Cheer isnt unexcelled far kasyna erase scarcity be beneficial to hole turn special companies mel?e with. Take partner in crime about space, adjacent is burgee stray as a last resort minute disgust abundantly put on responsibility for bewitched foreigner common man label be proper of damage.	petergabr
3		583	BALL AND ROLLER BEARINGS	Dima_/Tray.plt		defect	Dima_	new	2013-06-13T05:39:10-0400	2013-06-13T05:39:10-0400	Because the bearings to withstand a certain load rotation, as well as load [http://www.jklbearing.com/ skf bearings] bearing fits and the resulting elastic deformation. Rolling and plain bearings difference between the first appearance of [http://www.jklbearing.com/ fag bearing] the structure, is by rolling bearings to support the rotation of the rotating shaft, and the contact area is a point, the more [http://www.jklbearing.com/sdp/765607/4/cp-4011146/0/TIMKEN_NSK_NTN_TSUBAKI_BARDEN.html ntn bearing] the rolling bodies, the more contact points; smooth sliding [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636440/EXCAVATOR_BEARINGS_NSK_NTN_KOYO.html koyo bearing] bearing surface is by to support the rotating shaft, which is a surface contact area.	sg@…
3		584	BALL AND ROLLER BEARINGS	Dima_/Tray.plt		defect	Dima_	new	2013-06-13T05:44:34-0400	2013-06-13T05:44:34-0400	 Followed by the movement in different ways, the rolling bearing of [http://www.jklbearing.com/ skf bearings] exercise; sliding bearing means is a sliding movement, and thus also on the friction situation is completely different. Lubrication [http://www.jklbearing.com/ fag bearing] conditions in the liquid, separated from the sliding surface is not in direct contact with oil, but also can greatly reduce the friction [http://www.jklbearing.com/sdp/765607/4/cp-4011146/0/TIMKEN_NSK_NTN_TSUBAKI_BARDEN.html ntn bearing] loss and surface wear, the film also has a vibration absorbing capability. But the starting [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636440/EXCAVATOR_BEARINGS_NSK_NTN_KOYO.html koyo bearing] friction resistance. 	jg@…
3		587	Bearing - Merriam-Webster Online	Dima_/Tray.plt		defect	Dima_	new	2013-06-18T00:08:51-0400	2013-06-18T00:08:51-0400	"Since the founding of New China by political influence, once [http://www.eternalbearing.com/ skf bearing] foreign civilian bearing technology dissemination and product sales have also been subjected once obstruction, but eventually [http://www.eternalbearing.com/ ball bearing] it because China's huge consumer market and the rise of national industry, the majority of well-known foreign brands are [http://www.eternalbearing.com/ina/ ina bearings] bearing set up a subsidiary in China and even the production plant. Although domestic bearing industry has been significant [http://www.eternalbearing.com/koyo/ koyo bearings] progress and improve.
"	sg@…
3		588	Rolling _ Interactive Encyclopedia	Dima_/Tray.plt		defect	Dima_	new	2013-06-18T00:12:59-0400	2013-06-18T00:12:59-0400	"In technical quality, product promotion and maintenance concept [http://www.eternalbearing.com/ skf bearing] still has not a small gap, overall, compared to foreign commercial value of the bearing has a congenital weakness, high-end [http://www.eternalbearing.com/ ball bearing] bearings domestic industry industry visibility to be expanded and developed. As China's domestic development is in a special [http://www.eternalbearing.com/ina/ ina bearings] period, the market economy system trading products bearing is particularly confusing, in China engaged in various [http://www.eternalbearing.com/koyo/ koyo bearings] types of bearings imported and domestic large size of the number of dealers.
"	gd@…
3		589	Rolling _ Interactive Encyclopedia	Dima_/Tray.plt		defect	Dima_	new	2013-06-18T00:16:58-0400	2013-06-18T00:16:58-0400	"Due to market demand, businesses are inseparable from the [http://www.jklbearing.com/ nsk bearings] bearings, it turns into a strange bearing products in China, ""pigeon-holing"" phenomenon, according to the different companies [http://www.jklbearing.com/ fag bearing] (except the army outside) needs, in China from imported high quality bearing products to the general domestic bearing market [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636139/INDUSTRIAL_BEARINGS.html industrial bearing] prices have a very huge difference and jitter changes. In relatively open system in the city of [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636437/BEARING_HOUSE_SKF_ASAHI_NTN.html asahi bearings] Shanghai.
"	gd@…
3		590	Bearing - Merriam-Webster Online	Dima_/Tray.plt		defect	Dima_	new	2013-06-18T00:18:41-0400	2013-06-18T00:18:41-0400	For example, only the year 2011 through the industrial and [http://www.jklbearing.com/ nsk bearings] commercial registration statistics in mechanical and electrical equipment parts trading company had as many as 320, in the Shanghai [http://www.jklbearing.com/ fag bearing] area alone, there are SKF bearings sales agent Ai Si Kai-Fu, times MAIRY, Ding Yang, one hundred million shaft resistance, benevolence [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636139/INDUSTRIAL_BEARINGS.html industrial bearing] and so on. Rolling mill vintage hollow shaft mounting method is suitable for processing [http://www.jklbearing.com/sdp/765607/4/pl-4009644/0-1636437/BEARING_HOUSE_SKF_ASAHI_NTN.html asahi bearings] into the hollow shaft diameter of the bearing.	sg@…
3		591	Here are Some Facts of Post workout energy drinks	Dima_/Tray.plt		defect	Dima_	new	2013-06-18T06:34:40-0400	2013-06-18T06:34:40-0400	"Pure protein shakes possess a bad level of popularity with some folks. Heaps of individuals link all of these mentally with physique making who drink all of them just after physical exercises. While some dieters also as bodybuilders drink these sorts of shakes, numerous people tips on how to start off employing all of them thoroughly, probably not individuals groups of individuals. Some not automatically even conscious of the main reason why they should to consume Labrada Submit exercise routine energy beverages to begin with. They won't drink all of these since they understand how advantageous they might be and just how these are in a position to support people today to utilizing their excess weight reduction or bodyweight building technique. They could be basically adopting the recommendation which they been instructed by a further man or woman. Pure protein shakes and just how they may be capable of guide you. Pure protein shakes consist of diet, as well as suitable aim involves restoring vitamins the body loses throughout a challenging physical exercise session. As a result of their character, muscle tissue burn up off body fat to the continuous foundation, even when you happen to be basically stress-free possessing a snack whilst youtube video clips. Powerful exercise the breakdown of muscle tissues as if you see publisher’s site here. Your body involves proteins to make muscle mass mass, and subsequent an physical exercise system the body will require protein ahead of it can repair muscle tissue. Having said that furthermore you utilize power whilst you are performing exercises, which depleted electrical power must also get replaced prior to the human body can start out rebuilding your very own harmed muscle mass tissue. Very just, every single protein and ability is needed. The body needs carbs, which this converts into electricity, coupled with proteins. Modifying what your whole system loses through an training, Considering the fact that you identify that working out damages muscle tissue and burns the facility the body have to fix all of them, you may be asking you tips on how to good the situation. Because of this body setting up drink pure protein shakes soon after exercise routines - to be able to replenish their energy and provide protein they demand. Pure protein shakes provide the proteins required to rebuild harmed muscle tissues, but the truth is provide you with the carbs which the system improvements to the energy it demands to get started on the repairing course of action. This is pretty effectively spelled out if you test [http://www.youtube.com/watch?v=n6tpXvFOTXg&feature=BFa&list=UUze0IKoM9yjYCVhmDP4oQtQ total overview on youtube]. 





Turning into liquid, mixtures are definitely the easiest and speediest process to receive proteins and carbs inside your software. They could be absorbed considerably faster within just one's body compared to they would grow to be when they were ingested inside a good make contact with type. Proteins powder, dairy and simple sugar will be the key components in many pure protein shakes. The straightforward sugars offer you necessary carbohydrates that you should get the energy it demands. On the other hand you must also try to ensure that Post exercise routine strength drinks a person consume possesses the best mixture of nutrients to assist your muscle mass cells arrive again. Stay away from calorie-loaded shakes that may guide you to place on weight and create abdomen fat. Lookup for your best mixture of nutritional natural vitamins, vitamins, organic herbs, protein in addition as carbs when you find yourself purchasing your personal shakes. Quite a few believe glutamines ought to even be a material, at present an excellent amino acid that may endorse the firm of lean body mass. Purified whey may be the favored source of proteins for some system making, since it aids truly feel happy and less starving. Along with managing your hunger, whey may even aid help lean muscle mass mass; thus it is actually a superb component to boost your own personal shakes. It's basic to make the most of, also it's available inside of a broad variety of delicious tastes. Exercise routines deplete mans retailers of one's and tenderize yourself. Every single problem may be corrected by way of pure protein shakes, which supports repair muscle tissue. A lot extra muscle mass will let you eradicate extra fat. Prevent mistakenly consider you're able to melt away off extra fat by consuming shakes rather than consuming your personal standard foods, for the reason that that won't how capabilities. You need to proper make the most of for pure protein shakes, how they could take care of your servings. You can obtain the pretty best results by way of drinking them in little quantities. You may click to investigate further.







Trying to find to use protein shake weight loss plan a part of the healthy diet plan is an excellent method to place nutritional requirements in your day by day use. Although some men and women may well initially believe about pure protein shakes purely in terms of weight-loss, this is certainly definitely unreal. Prone to significant amount of methods to involve a regimen protein tremble to the diet regime for a full host of things. From yummy fruit smoothies for virtually any breakfast away from your home for an mid-day deal with for picky predators, incorporating the punch of proteins is not hard serious about all of your decisions. Ordinarily neglected selections are wholesome protein shakes for children. With the patients' parents with fussy eaters or maybe men and women with small children likely as a result of creating spurts, such as a supplemental tremble might be precisely everything you are trying to find. You are able to generate children's favored flavoring and mix this proper right into a tasty contend with that they're susceptible to take pleasure in. When peanut butter is really their go to taste, then test out locating a spoon of butter towards the blender in the event you are mixing the creamy combination. Just in case your kid savors fruits for instance bananas or simply berries, right after that throwing a superb fruit in to your combination can undoubtedly make your personal youngster really feel wholly pampered. Your youngster may need the benefit of further minerals and natural vitamins within just their eating plan procedure having said that, not even recognize that you are assisting them to show out to be more healthy when involving them with widespread flavors making use of the protein weight loss plan drinks. Girls make during the most significant person range of supplemental mixtures. You'll discover pure protein shakes for girls that are manufactured especially for their extremely individual nutritional demands. In addition, you will discover many options which may be great for ladies and gentlemen. 
"	anonymous
3		29	memoization is not thread-safe	dherman/memoize.plt		enhancement	dherman	new	2008-09-03T10:38:20-0400	2008-09-03T10:38:20-0400	It would be good to at least have a synchronized version of the memoization operations.	dherman
3		31	make sets sequences	dherman/set.plt		enhancement	dherman	new	2008-09-03T11:50:34-0400	2008-09-03T11:50:34-0400	"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)
}}}
"	dherman
3		32	optional and keyword args	dherman/memoize.plt		enhancement	dherman	new	2008-09-03T13:00:44-0400	2008-09-03T13:00:44-0400	Optional and keyword args should be handled as well.	dherman
3		34	Function.prototype.toString should produce source	dherman/javascript.plt		enhancement	dherman	new	2008-09-08T12:51:58-0400	2008-09-08T12:51:58-0400	The {{{toString}}} method for functions should produce their source.	dherman
3		56	parameter for top-level let semantics	dherman/javascript.plt		enhancement	dherman	new	2008-09-10T06:42:48-0400	2008-09-10T06:42:48-0400	"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}}}."	dherman
3		81	make prophecies sequences	dherman/prophecy.plt		enhancement	dherman	new	2008-09-23T20:24:50-0400	2008-09-23T20:24:50-0400	Similar to #31, release a new version of prophecy.plt with a {{{prophecy->sequence}}} procedure and perhaps a {{{for/prophecy}}}?	dherman
3		116	long startup time	vegashacker/leftparen.plt		enhancement	vegashacker	new	2008-11-03T11:22:01-0500	2008-11-03T11:22:01-0500	"Submitted be Jean:

""server is very long to start (around 1 mn)"""	vegashacker
3		143	Request for docs on interaction model	vyzo/gnuplot.plt		enhancement	vyzo	new	2008-12-24T19:35:06-0500	2008-12-24T19:35:06-0500	"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)."	clements@…
3		154	schememodlang/this-package + defmodulelang/this-package	cce/scheme.plt		enhancement	cce	new	2009-03-17T16:58:52-0400	2009-03-17T16:58:52-0400	These would be nice	anonymous
3		158	Feature request: lang/this-package	cce/scheme.plt		enhancement	cce	new	2009-03-22T21:06:03-0400	2009-03-22T21:06:03-0400	"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."	dherman
3		160	Port to typed-scheme	schematics/schemeunit.plt		enhancement	schematics	accepted	2009-03-25T08:10:30-0400	2009-03-25T08:10:47-0400	Rewrite the core of SchemeUnit in Typed Scheme.	schematics
3		191	SchemeUnit checks for syntax errors	schematics/schemeunit.plt		enhancement	schematics	new	2009-07-02T12:02:31-0400	2009-07-02T12:02:31-0400	"Two checks:

- fails if a macro expansion yields a syntax error
- fails if a macro expansion does not yield a syntax error"	schematics
3		276	Start function doesn't allow for changing fps	kazzmir/allegro.plt		enhancement	kazzmir	new	2010-04-01T20:02:45-0400	2010-04-01T20:02:45-0400	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.	almeidaraf@…
3		277	World object doesn't export get-objects	kazzmir/allegro.plt		enhancement	kazzmir	new	2010-04-03T12:45:20-0400	2010-04-03T12:45:20-0400	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?	almeidaraf@…
3		290	compile: unbound identifier in module	_default-component		enhancement	robby	new	2010-07-09T17:43:11-0400	2010-07-09T17:43:11-0400	"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, [http://geologyonlinecourses.com/ Geologist]."	anonymous
3		297	enhance define-datatype to handle #:property prop:equal+hash	dherman/types.plt		enhancement	dherman	new	2010-09-09T05:00:18-0400	2010-09-09T05:00:18-0400	"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 "	anonymous
3		319	current-print is inactive	neil/sicp.plt		enhancement	neil	new	2011-01-24T15:12:04-0500	2011-01-24T15:12:04-0500	"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.
"	bsniffen@…
3		330	Unable to create unique indices	jaymccarthy/mongodb.plt		enhancement	jaymccarthy	accepted	2011-04-27T00:52:09-0400	2011-04-30T14:21:02-0400	"mongo ensureIndex requires two documents when creating unique indices. The current interface seems to only provide for one. 

i.e,  db.things.ensureIndex({x : 1}, {unique : true}) does not seem to have a mongo equivalent

"	anurag@…
3		500	"Request for adding parser combinator ""zero"""	bzlib/parseq.plt		enhancement	bzlib	new	2012-12-14T07:46:24-0500	2012-12-14T07:46:24-0500	"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))))"	anonymous
3		505	Implicit passing of monad argument	toups/functional.plt		enhancement	toups	new	2013-01-02T20:44:51-0500	2013-01-02T20:44:51-0500	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. 	Sgeo
3		506	Get and put	toups/functional.plt		enhancement	toups	new	2013-01-02T20:52:51-0500	2013-01-02T20:52:51-0500	"I think it would make sense to include get, put, and modify for the state monad, or perhaps call them state-get state-put state-modify. Could also make state-put and state-modify not return useful values, but not sure if there's a reason to do that.


{{{
(define state-get
  (lambda (state)
    (state-doublet state state)))

(define (state-put new-state)
  (lambda (old-state)
    (state-doublet new-state new-state)))

(define (state-modify modifier)
  (lambda (old-state)
    (define result (modifier old-state))
    (state-doublet result result)))
}}}"	Sgeo
3		557	season tickets passes	Dima_/Tray.plt		enhancement	Dima_	new	2013-05-26T00:48:39-0400	2013-05-26T00:48:39-0400	"Jennifer Hill
Los Angles Kings
season ticket holder
limit: 2 passes 
sec: R 30 R 31
"	anonymous
3		54	"""use lexical scope"" pragma"	dherman/javascript.plt		task	dherman	new	2008-09-09T20:34:08-0400	2008-09-09T20:34:08-0400	"{{{
use lexical scope;
}}}"	dherman
3		99	add an expansion phase to the compiler	dherman/javascript.plt		task	dherman	new	2008-10-11T22:23:34-0400	2008-10-11T22:23:34-0400	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.	dherman
3		121	test infrastructure for different compilation modes	dherman/javascript.plt		task	dherman	new	2008-11-07T13:32:28-0500	2008-11-07T13:32:28-0500	Need to be able to test module evaluation, script evaluation, and interaction evaluation etc.	dherman
3		122	coverage for compiler tests	dherman/javascript.plt		task	dherman	new	2008-11-07T14:20:41-0500	2008-11-07T14:20:41-0500	Need tests for all the clauses in the compiler.	dherman
3		156	test-suite semantics change makes my code infinite loop	schematics/schemeunit.plt		task	schematics	accepted	2009-03-19T23:29:13-0400	2009-05-06T07:53:44-0400	"I was driving myself crazy trying to figure out why my Intel laptop was running my tests while my old Power Mac was taking forever to run them.

Eventually I realized it was because my Power Mac had downloaded a more recent version of Scheme Unit.

Consider the following:

{{{
#lang scheme

#;
(require (planet schematics/schemeunit:3) 
         (planet schematics/schemeunit:3/text-ui))
(require (planet ""main.ss"" (""schematics"" ""schemeunit.plt"" 3 (= 3)))
         (planet ""text-ui.ss"" (""schematics"" ""schemeunit.plt"" 3 (= 3))))

(define felixs-suite (test-suite """"))

(set! felixs-suite 
      (test-suite ""snoc"" 
                  felixs-suite
                  (test-case ""test"" (check-equal? 1 1))))

(run-tests felixs-suite)
}}}

I use the pattern above (in a more complicated manner but abstracted under a macro) to incrementally construct a set of test cases whose evaluation will be delayed until I invoke {{{run-tests}}}.

I can see in the Release Notes for version 3.4 that you say that you have changed things to allow ""arbitrary expressions"" in test suites.  But I would claim that you have merely changed the set of allowable expressions, since my example worked better under the old semantics.  The documentation should be improved to make this clearer.

----

In the meantime, can you tell me how you would achieve the effect I desire?  (One way to think of the desired effect is like the Student Language's {{{check-expect}}} form, which delays invocation of the tests until the entire module body has been evaluated.)


"	pnkfelix@…
3		281	Please consider using development links.	ocorcoll/beanscheme.plt		task	ocorcoll	new	2010-04-20T14:17:08-0400	2010-04-20T14:17:08-0400	"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@ccs.neu.edu
Ph.D. student
Northeastern University"	cce
4		38	numbers are unfaithful to spec	dherman/javascript.plt		defect	dherman	new	2008-09-08T12:55:24-0400	2008-10-05T23:15:05-0400	Numbers are represented as Scheme bignums; they should be inexact IEEE754 double-precision floating point. And then there are all the Ecma conversions to integer and string throughout the semantics.	dherman
4		40	over-parenthesization in while-conditions	dherman/javascript.plt		defect	dherman	new	2008-09-08T13:11:51-0400	2008-09-08T13:11:51-0400	"{{{
(pretty-print
 (format-term (parse-source-element ""while (true) { }"")))
}}}

displays:

{{{
while ((true)) {
}
}}}"	dherman
4		125	Docs link unavailable; .DS_Store file unnecessary	zitterbewegung/uuid-v4.plt		defect	zitterbewegung	new	2008-11-10T12:38:24-0500	2008-11-10T12:38:24-0500	It'd be great if you could get the docs link working.  Nothing elaborate for documentation needed, I think--just an example showing the main way to use the library.  Also, the .DS_Store file in the source for the library I believe is unnecessary.	vegashacker
4		179	c.plt fails to install correctly	dherman/c.plt		defect	dherman	needinfo	2009-05-15T08:05:29-0400	2009-05-17T21:03:43-0400	"I get on a REPL:
> (require (planet dherman/c:3:1))
require: unknown module: 'program
setup-plt: error: during Building docs for /home/pmatos/.plt-scheme/planet/300/4.1.5.3/cache/cce/scheme.plt/3/0/scribblings/main.scrbl
setup-plt:   require: unknown module: 'program"	pocmatos@…
4		181	example from docs declares IDistributeLists as a module	cce/dracula.plt		defect	cce	new	2009-05-28T21:18:45-0400	2009-05-28T21:18:45-0400	"This is bogosity in the Dracula documentation

{{{
  (module IDistributeLists
    (include IAssociative)
    (include ICommutative)
    (include IDistributive)
    (sig addall (xs))
    (sig mulall (x ys))
    (con addall/mulall-distributive
      (implies (proper-consp bs)
               (equal (mulop a (addall bs))
                      (addall (mulall a bs))))))
}}}

If you are just cut-and-pasting from the ref manual, you get this error:

{{{
. include: not valid outside interface in: (include iassociative)
}}}


"	pnkfelix
4		185	"Modular ACL2 reacts poorly to mixing of ""code"" and exports"	cce/dracula.plt		defect	cce	new	2009-06-01T22:35:24-0400	2009-06-01T22:35:24-0400	"Open up the following in Modular ACL2, select the module m, and click ""Admit All"" button

{{{
(interface Ig (sig g (y)))
(interface Ih (sig h (z)))

(module m 
  (defun g (y) (+ y y))
  (defun h (z) (g z))
  (export Ig)
  (in-theory (disable (:executable-counterpart h)))
  (export Ih))
}}}

I get the following internal error from the guts of Dracula/DrScheme:
{{{
highlight/save: start position 177 > end position 125

 === context ===
/Users/pnkfelix/Library/PLT Scheme/planet/300/4.1.5/cache/cce/dracula.plt/8/2/drscheme/dracula-drscheme-tab.ss:
}}}

The obvious workaround is to put the {{{in-theory}}} invocation above the export.  Note however that I think some people might have reason to write down {{{in-theory}}} invocations that effect the proof attempts for some signatures but not all of them.

In any case the internal error is bad.


"	pnkfelix
4		194	problem including this file from planeT	synx/xml-maker.plt		defect	synx	new	2009-07-26T15:17:09-0400	2009-07-26T15:17:09-0400	"This does not work (require (planet synx/xml-maker:1:0))I get the following error 

require: not a valid planet path; should be: (require (planet STRING (STRING STRING NUMBER NUMBER)))

If I use the ""old"" way things are OK.

DrScheme 4.2 under windows XP SP3."	anonymous
4		218	^M end-of-lines	orseau/lazy-doc.plt		defect	orseau	new	2009-10-29T04:09:05-0400	2009-10-29T04:09:05-0400	It adds ^M end-of-lines in generated docs on Unix.	orseau
4		258	bogon in docs	dherman/javascript.plt		defect	dherman	new	2010-02-09T14:16:43-0500	2010-02-09T14:16:43-0500	"intro.html:

Examples:
  > (eval-script ""print(40 + 2)"")
  link: module mismatch, probably from old bytecode whose
  dependencies have changed: variable not provided (directly
  or indirectly) from module: ""C:\Documents and
  Settings\dherman\My
  Documents\Subversion\planet\javascript\lang\lang.ss"" at
  source phase level: 0 in: script-begin
  > (require (planet dherman/pprint))

Reported by Eric Hanchrow."	dherman
4		274	mzsocket fails to install cleanly on OS X (10.5 and 10.6)	vyzo/socket.plt		defect	vyzo	new	2010-03-28T12:08:54-0400	2010-03-28T12:08:54-0400	"I am trying to install mzsocket with the planet line:
(require (planet vyzo/socket:3:2))

It downloads it correctly but upon installation I get the following error on (10.5.8):
/Users/eric/Library/PLT Scheme/planet/300/4.2.4/cache/vyzo/socket.plt/3/2/compiled/native/i386-macosx/3m/_socket.c: In function 'inet_address_to_vec':
/Users/eric/Library/PLT Scheme/planet/300/4.2.4/cache/vyzo/socket.plt/3/2/compiled/native/i386-macosx/3m/_socket.c:1596: warning: pointer targets in passing argument 1 of 'scheme_make_sized_byte_string' differ in signedness
except-in: identifier `socket-accept' not included in nested require spec
setup-plt: error: during making for <planet>/vyzo/socket.plt/3/2 (mzsocket)
setup-plt:   except-in: identifier `socket-accept' not included in nested require spec

in 10.6.2 I do not get the c errors but still the same three lines of scheme errors."	endobson@…
4		303	xpath-parser.ss problem w/ abbreviated xpath syntax	lizorkin/sxml.plt		defect	lizorkin	new	2010-10-14T15:46:43-0400	2010-10-14T15:46:43-0400	"Hi, I'm somewhat new and did not notice the ticket
feature so I sent this report in yesterday to email
addresses listed in the source code.

I thought I'd resend it here again as it's probably
better protocol:

subject : bug in xpath-parser.ss

First, thank you for all the OS PLT-Scheme -- errr
I mean, Racket code.  I love this stuff.

There seams to be a problem with some special cases for
abbreviated xpath syntax -- looks like absolute paths
have problems with xpaths that start with one of : 
""div"", ""mod"", ""and"", ""or"".  
(could be that I just don't understand the specs)

examples to illustrate :

;;----------------------------------------------------
;; Works :
(let*([data    '(*TOP*
                (*PI* xml ""version='1.0'"")
                (one ""111""
                     (two ""222"")))])
 (list
   (eval-xpath ""/one"" data)
   (eval-xpath ""/one/two"" data)))

;;----------------------------------------------------
;; Fails :
(let*([data    '(*TOP*
                (*PI* xml ""version='1.0'"")
                (div ""111""
                     (two ""222"")))])
 (eval-xpath ""/div"" data))

;; Error Message :
;;   XPath/XPointer parser error: unexpected end of XPath
;;   expression. Expected - NCName procedure application: expected
;;   procedure, given: #f; arguments were: (*TOP* (*PI*
;;   xml ""version='1.0'"") (div ""111"" (two ""222"")))

;;----------------------------------------------------
;; Fails :
(let*([data    '(*TOP*
                (*PI* xml ""version='1.0'"")
                (div ""111""
                     (two ""222"")))])
 (eval-xpath ""/div/two"" data))

;; Error Message :
;;    /: division by zero

;;------------------------------------------------------------------
;; Works :
(let*([data    '(*TOP*
                (*PI* xml ""version='1.0'"")
                (div ""111""
                     (two ""222"")))])
 (list
   (eval-xpath ""div/two"" data)
   (eval-xpath ""/child::div"" data)
   (eval-xpath ""/child::div/two"" data)))


Davis Marshall
"	dmarshall207@…
4		309	Parsing bug discovered	neil/htmlprag.plt		defect	neil	new	2010-11-15T00:49:05-0500	2010-11-15T00:49:05-0500	"The double-quote turns into the string ""&quot;"" when you convert to HTML and back again in this example:

(html->shtml (shtml->html '(FooBar (@ (quote ""\""'"")) ""DSFSDF"")))
==> (*TOP* (foobar (@ '""&quot;'"") ""DSFSDF""))
"	anonymous
4		310	Cigar Site	bzlib/flexer.plt		defect	bzlib	new	2010-11-19T21:39:23-0500	2011-05-22T17:02:47-0400	"Trying to install on my site for Cigars, but I keep getting the same install error:

"	anonymous
4		327	require error on installing	cce/fasttest.plt		defect	cce	new	2011-03-15T17:56:05-0400	2011-03-15T17:56:05-0400	"The fasttest.plt module gives this error under Racket 5.1 when downloading and installing the module:
-------
require: unknown module: 'program
raco setup: error: during Building docs for C:\Users\jjohnson.INTERNAL\AppData\Roaming\Racket\planet\300\5.1\cache\cce\scheme.plt\7\3\reference/manual.scrbl
raco setup:   require: unknown module: 'program
-------
Aside from that, the build proceeds normally."	jmj@…
4		329	Frequency counting benchmark hash-for-each bug	dvanhorn/ralist.plt		defect	dvanhorn	new	2011-04-23T08:24:30-0400	2011-04-23T08:24:30-0400	" There is a bug in the hash table implementation of the frequency
 counting benchmark, which relies on hash-for-each to iterate
 through the result frequency count, but the problem specification
 is to print them in ascending order.  But hash-for-each iterates
 in unspecified order.

 There is a failing test case that catches this."	anonymous
4		366	Revision to previous ticket	kazzmir/vi.plt		defect	kazzmir	new	2011-10-13T18:06:07-0400	2011-10-14T07:15:22-0400	I posted the ticket about insert-line-previous not working, but I realized that it only doesn't work if you are trying to use it when your cursor is on the first line of the document. It works if you are anywhere else in the document, but not at the very top. Sorry for any confusion this may have caused. If I knew a way to edit an existing ticket, I would have done so.	anonymous
4		488	Empty file reports wrong error	dherman/json.plt		defect	dherman	new	2012-10-29T07:39:27-0400	2012-10-29T07:39:27-0400	"When attempting to parse an empty JSON file, I found that instead of giving the correct error, which is ""read: unexpected EOF"", this module instead reports this error:

char-whitespace?: contract violation
expected: char?
given: #<eof>

This can fixed by changing the application of char-whitespace? in skip-whitespace to be ""(and (char? ch) (char-whitespace? ch))""."	nculwell
4		499	"""not a procedure"" problem on Windows"	clements/rsound.plt		defect	clements	new	2012-12-10T15:54:43-0500	2012-12-10T15:54:43-0500	"Some of the example code from the docs produce a ""not a procedure"" problem on windows.

For example the code below produces (highlighting lpf/dynamic in DrRacket):

application: not a procedure;
 expected a procedure that can be applied to arguments
  given: #<network/s>
  arguments...:
   #<procedure:control>
   #<procedure:sawtooth>

Similar issue results on using sine-wave.

Example program from docs pro

#lang racket/base

(require (planet clements/rsound:4:4))
(require (planet clements/rsound:4:=4/filter))

(define (control f) (+ 0.5 (* 0.2 (sin (* f 7.123792865282977e-005)))))
(define (sawtooth f) (/ (modulo f 220) 220))
 
(play (signal->rsound 88200 (lpf/dynamic control sawtooth)))
"	khardy
4		585	Role Of Penis Enlargement Pills	Dima_/Tray.plt		defect	Dima_	new	2013-06-16T15:33:08-0400	2013-06-16T15:33:08-0400	"Ever given that, with all the introduction of the doctors prescribe erectile drugs that include pills like Viagra, Cialis, but with all the escalating cost of these products, men are searching for a greater alternate solution for this capsule and as a consequence in this article will come the job of Penis enlargement devices. It is actually mainly because individuals really need to invest in this Penis enlargement devices for that a person time, necessarily mean time any on the enlargement supplements or complement men and women must invest in more than one periods. Though, this really is accurate the roles of penis enlargement supplements are much too higher, as this normally does its work with inside of a extremely small time.



It is genuine that now the expanding demand for this tablet numerous companies have think of this male improvement supplements which has started out flooding the industry but listed here this will not be ignored the purpose of Penis enlargement devices is decreasing. With lots of alternatives readily available in each retail together with the on the web industry stores quite a few trends have emerged that really need to preserve aim on according to the different male enhancement evaluation web-sites. Nicely right here, the massive query is that how to pick the very best pill for yourself that should have no forms of facet outcomes. Very well subsequent trends ought to maintain your aim ahead of choosing any this kind of invoice to suit your needs. Properly right here the initial as well as the foremost craze that have to keep the target is always that you need to look at for cons. With countless organizations popping out with numerous supplements it is very significant to watch out for scams as a lot of duplicate products has also flooded the marketplace which have been dangerous on your health and fitness. These are staying offered illegally in certain in the on the web merchants also in some retail industry chains. Effectively within this regard, it is possible to go through in particulars on several evaluation sites that utilized to give critiques on many Penis Enlargement Drugs and wherever you will get suggestions of so many individuals in addition. Review web sites would be the finest alternative to discover for ripoffs since they accustomed to supply in depth data regarding the many top rated rated capsules available out there. Or nonetheless any on the data is required then you can simply test this by likely to '''[http://penisverlaengerung24.com penisverlaengerung24.com]'''
. It's an excessive amount of necessary at this moment. Perfectly our next most critical trend that we've been now highlighting here is the main element ingredients used in just about every of people capsules. Within this regard loads of exploration and research is required and for this you'll want to pay a visit to all of the official weblogs or site of each with the providers advertising likewise as production all those drugs out there. Over the formal web-site you are able to try to find the key ingredients, that exact capsule accustomed to comprise. So as to confirm the fact whether or not web-sites are giving accurate facts or not you may refer the point to lots of evaluation web-sites or community forums the place you could request for the essential components of particular supplements therefore you will get solutions from other associates of that discussion board who might have utilised several of these drugs prior to. Even further, you will also get some review on these pills so from there also you could get in depth data pertaining to several vital elements a single unique male improvement capsule used to have. Fourthly, you must try to find the ingredients that operate. Properly with this regard, you could seek the advice of medical doctors concerning which substances really utilized to operate for you as below a single issue needs to say that prerequisite of capsules accustomed to change from individual to individual. It can be mainly because distinctive human being features a various system construction and wellbeing position thus just about every invoice will never be well suited for each and every guy. It truly is for that reason it is very crucial to grasp which components are going to be ideal appropriate for you and may provide you with the ideal achievable results. Fifthly, it's important to see no matter whether the business promoting this male improvement pill provides you the cash back assurance or not. Properly a business utilized to give revenue back again ensure once they are confident ample concerning their product or service. You will need to pay attention to the companies which are providing dollars back ensure period of 30 to sixty times where you'll rarely expertise any types of success. For that reason, you will end up not ready to make your mind up regardless of whether to maintain or discard the merchandise On the flip side you will discover also companies which will get back only the unopened item that's simply not possible in case you should make use of the merchandise for at least per month or so. But nevertheless I need to say to work with Penis enlargement devices when you will take this capsules. Which Penis enlargement devices is too great as this can be coming with all the greatest cash back promise give because it will come together with the ninety times supply. 





Well our upcoming pattern is to find out no matter whether the businesses are offering far better provides over the product. With countless Penis enlargement devices readily available available in the market the companies accustomed to supply valuable provides to lure the customers like buy one particular get one present and the like. This sort of delivers used to make nutritious competitiveness out there among the exact same class of makes. But I often at this case propose to take the Penis enlargement devices given that the subject is sort of delicate. "	anonymous
4		586	How To Do The Best With Xtrasize Penis Pills	Dima_/Tray.plt		defect	Dima_	new	2013-06-17T06:44:48-0400	2013-06-17T06:44:48-0400	"Male enlargement capsules now unfolded throughout the earth. The trend of enterprise isn't growing just from these days, while in the meanwhile this is actually the fact that the pattern goes considering the fact that the start. At any time because, along with the introduction with the health professionals prescribe erectile capsules that come with capsules like Viagra, Cialis, but with the escalating price of these capsules, adult males are looking for a much better alternative alternative for this pill and therefore below arrives the role of Xtrasize penis pills products. Nicely along with the growing desire for this capsule several businesses have think of this Xtrasize penis pills which includes started out flooding the marketplace. With numerous possibilities obtainable in both equally retail along with the on the net current market outlets a number of trends have emerged that need to preserve emphasis on as per the varied male enhancement assessment internet sites. Nicely in this article, the massive issue is that how to opt for the very best pill for you personally that can don't have any kinds of side outcomes. Very well adhering to traits really need to keep the aim in advance of choosing any this sort of invoice for you personally. Still in the event you have any varieties of issue relating to these capsules you then are welcome to go to this web site '''[http://penisverlaengerung24.com http://penisverlaengerung24.com]''' where by you'll get all types of thorough info regarding these supplements. 









The initial along with the foremost trend that have to keep the concentrate is the fact you'll want to look at for cons. With a lot of companies coming out with a lot of drugs it is vitally critical to watch out for frauds as numerous replicate merchandise has also flooded the market that are dangerous for your health. They may be currently being offered illegally in certain from the on the internet merchants as well in certain retail sector chains. Well in this regard, it is possible to endure in aspects on numerous evaluate sites that made use of to present reviews on various Xtrasize penis pills and the place you'll get feedback of a lot of persons as well. Assessment websites are the very best alternative to locate for ripoffs because they applied to offer in-depth information with regards to every one of the prime rated capsules accessible on the market. Very well our next most important craze that we are now highlighting here is the key substances employed in each of all those products. In this particular regard heaps of study and review is necessary and for this you need to go to all the formal blogs or web page of every of your organizations offering in addition as producing those people drugs on the market. About the official site you are able to search for the real key ingredients, that particular pill used to incorporate. If you want to confirm the very fact irrespective of whether websites are supplying accurate info or not you may refer the purpose to a lot of assessment sites or discussion boards in which it is possible to question for that essential elements of sure pills therefore you can get responses from other members of that discussion board who might have utilized many of these tablets just before. Further, you will also get some overview on these tablets so from there also you are able to get comprehensive facts pertaining to several key ingredients just one particular Xtrasize penis pills applied to return with. Fourthly, you have to search for the components that function. Properly in this particular regard, you could talk to doctors pertaining to which substances truly applied to operate to suit your needs as right here 1 point needs to say that prerequisite of supplements utilized to fluctuate in the individual to the human being. It is because various person includes a unique overall body structure and wellness position therefore each and every bill will likely not be appropriate for just about every person. It really is this is why together with other hand it is rather essential to be aware of which elements are going to be most effective well suited for you and will supply you with the ideal feasible outcomes. Fifthly, you must see no matter whether the corporation offering this Xtrasize penis pills provides you the cash back again warranty or not. Well a business employed to provide money again assurance if they are confident more than enough concerning their product. It's essential to be familiar with the companies which can be featuring dollars again ensure interval of thirty to sixty days in which you might rarely encounter any sorts of benefits. Thus, you may be not able to come to a decision whether or not to maintain or discard the products. In this article in the other hand also numerous firms readily available that should choose back again just the unopened product or service which can be basically extremely hard in the event you require for making use of the product or service a minimum of a month or so. Thus, the best income back promise give is always that which arrives along with the ninety times provide. 





Final pattern is that to check out regardless of whether the companies are featuring greater gives around the merchandise. With countless products and solutions readily available available in the market the businesses made use of to supply rewarding offers to lure the purchasers like get one particular get one offer you and the like. This kind of provides utilized to produce healthy competitors on the market between precisely the same class of makes. Longetivity could be the other most important and also the most critical pattern that you just need to imagine about when obtaining a Xtrasize penis pills on your own. Very well within this regard you will need to hunt for the product which might be available in the market for extended intervals of time plus the manufacturing business has got the great status available in the market. These applied to guarantee the truly in the products and so with eyes folded you should purchase that merchandise. Effectively in this article also opinions internet sites and forums will act as a aiding hand for yourself to be able to uncover the most beneficial product or service for you. Very well final factor you ought to search for the craze is the high-quality with the products. This can be confirmed by seeing whether the capsule are permitted with the medical associations and governments and irrespective of whether it's got a permissive licence and each of the important acceptance papers for offering in the market. 

 "	anonymous
4		41	implement read-only __proto__	dherman/javascript.plt		enhancement	dherman	new	2008-09-08T14:01:54-0400	2008-09-08T14:01:54-0400	This could be implemented as a custom getter. I believe that's how Mozilla does it.	dherman
4		95	make a csv-reader that takes in an input-port	neil/csv.plt		enhancement	neil	new	2008-10-01T00:23:19-0400	2008-10-01T00:23:19-0400	"Based on the doc, the csv.ss currently exposes a csv-reader-maker functions that creates a closure over the input port for reading the csv data.

While this is convenient for just reading csv files, it doesn't work well for composing different readers as it doesn't follow the scheme pattern of 

{{{
(read <input-port>)
}}}
. 

It would be nice to have a csv-reader-maker that'll make a procedures that takes an input-port so the reader can be composed.

"	yinso.chen@…
4		124	rename require.ss to main.ss	ryanc/require.plt		enhancement	ryanc	new	2008-11-09T22:56:42-0500	2008-11-09T22:56:42-0500	If you rename require.ss to main.ss, then one could require this package with (require (planet ryanc/require)), which would be cool.	dougorleans@…
4		236	pict-* from scheme/slideshow should combine in the order of the clauses	cce/scheme.plt		enhancement	cce	new	2009-12-03T11:15:41-0500	2009-12-03T11:15:41-0500	"It would be nice if pict-* combined the subpicts in the order they were given, instead of the non-ghost pict always being combined first.  That would be useful for #:combining via *-append instead of *-superimpose, and possibly other uses I haven't yet thought of.  An small example program is below:

#lang slideshow

(require slideshow/code
         (planet cce/scheme:6:0/slideshow))

(staged
 [a b c]
 (slide
  (pict-cond
   #:combine vl-append
   [(= stage a)
    (item (code a))]
   [(= stage b)
    (item (code b))]
   [(= stage c)
    (item (code c))])))

(For such uses, allowing a #:ghost keyword that allows overriding of the ghosting behavior may also be useful.  That way non-active parts can be greyed or cellophaned out instead.)"	sstrickl@…
4		275	please convert comments in xml file to *COMMENT* sxml nodes	lizorkin/ssax.plt		enhancement	lizorkin	new	2010-03-31T09:24:11-0400	2010-03-31T09:24:11-0400	"I've been trying to get an sxml view of an xml document including comments and tried with

(require (planet lizorkin/sxml:2:1/sxml))
(sxml:document ""my_doc.xml"")

(in mzscheme)

I noticed however that sxml drops the comments and also shifts the order of attributes around, if I do it this way.

I'd like to use sxml as a format for editing xml files, since it's a little less markup-heavy than xml, but I'd need to keep the comments and order of attributes (I put the most important attribute to the front, to make it stand out). The plain xml format needs to be the master format, since people who never heard of s-expressions are going to have to edit those files.

I started diving into the source, but failed to see an obvious way to change that behaviour yet. SSAX-code.ss is impossible to read, so I had to download SSAX.scm from sourceforge. It looks like comments could be handled by a function similar to ssax:read-cdata-body.

I appreciate if you could help me out with this, maybe add one or two optional parameters to sxml:document to convert comments into sxml comments and maintain the order of attributes.
"	friedel@…
4		298	Better error messages for accessors	krhari/pfds.plt		enhancement	krhari	new	2010-09-12T01:37:33-0400	2010-09-12T01:37:33-0400	"Compare the quality of the error messages below.  The PFDS library could do better.


{{{
Welcome to DrRacket, version 5.0.1.3--2010-08-25(-/f) [3m].
Language: racket; memory limit: 512 MB.
> (require (prefix-in pf: (planet krhari/pfds:1:4/skewbinaryrandomaccesslist)))
> (require (prefix-in rk: racket))
> (pf:second (pf:list 1))
. . list-ref: given index out of bounds
> (rk:second (rk:list 1))
. . second: expected argument of type <list with 2 or more items>; given '(1)

}}}
"	dvanhorn
4		436	Reg Fixers	bzlib/date-tz.plt		enhancement	bzlib	new	2012-05-31T10:01:47-0400	2012-05-31T10:01:47-0400	"Here are the three most reliable Reg Fixers that I feel lead in the market currently.
a) Registry mechanic: The Registry mechanic is designed to scan your laptop or computer for problems in the reg that slow down your laptop or computer and even crash it then helps you repair these mistakes with the many tools that it comes with. This software program can fix quite a few issues in the laptop or computer including missing help files, removed fonts, broken shortcuts and references to uninstalled software programs. The Registry mechanic additionally easily creates backups of the reg and has a Tuneup service option and a reg defragger that can enhance operating system boot services. There are of course a lot of other tools and elements that make this software program one of the most preferred by computer users.
b) CyberDefender: If you want a Reg Fixer that doubles up as an antivirus software program and anti-malware, cyberdefender certainly is your kind of software program. I think that this software program deserves the top three position because it is stealthy and catches more malware and viruses than most other antivirus software programs. It uses Dual-core anti-malware technology to give sophisticated detection and prevention and has got the option of Link Patrol that will keep you safe from adware and spyware downloads along with phishing scams. CyberDefender comes with tons of options to customize it to your preferences and other enhancements on version 3.0 that were recommended by reviewers and users from the earlier versions 1 and 2.
Info http://www.registrycleanerswatch.com/"	isabellarodway@…
4		578	Important Notes on Writing Essays	Dima_/Tray.plt		enhancement	Dima_	new	2013-06-11T04:13:16-0400	2013-06-11T04:13:16-0400	"Sad to say for students, they'll have to write tons of essays till they graduate. They write more often than they could possibly imagine and hope for, but it's all for their benefits anyway. With all the essay writing they do for school, you'd think students know enough about writing to actually write a good essay. But despite the amount of writing practice they acquire, some important writing rules just elude them. To refresh their memories, below are some tips that students best follow at all times:

 '''Thoroughly understand the topic first''' – It is foolish to think that you can come up with good essay if you only have a minimal understanding of topic. Unless the subject is something that you're already well-versed in, doing some researching needs to be in order at the start of the [http://uk.bestessays.com/ uk essay writing] process. It's important for you to have a full grasp of the topic before you even try to write about it

 '''Support main points with credible references''' – Yes, there are essays that are shaped by the writers' own opinions, but it's still  preferred if you support all your claims with research. Just remember that including citation is a requirement whenever you use a reference.

 '''Re-read and revise''' – It's dumbfounding how some students think they can do without editing. They give very little to no importance to revising their essays when it's such a vital step in the process. It's impossible even for expert writers to get the first draft perfect. So re-read and edit because that can be their saving grace.

So remember these three tips all the time and it's definite that the quality of your essays will improve."	Martha
4		36	implement JavaScript library fully	dherman/javascript.plt		task	dherman	new	2008-09-08T12:53:49-0400	2008-10-05T23:15:22-0400	The standard JavaScript library is stubbed but not fully implemented.	dherman
4		39	regular expressions aren't implemented	dherman/javascript.plt		task	dherman	new	2008-09-08T12:55:45-0400	2008-10-05T23:17:45-0400	Regular expressions are stubbed but not implemented.	dherman
4		176	same name as another planet package - confusing version numbering	fjl/leftparen.plt		task	fjl	new	2009-05-12T16:23:19-0400	2009-05-12T16:23:19-0400	"If this version is deprecated - please note it as such and remove the categories - that will remove it from the list of planet packages.
"	spdegabrielle@…
4		238	note that you need to restart DrScheme after (require ...)-ing the projectmgr	spdegabrielle/projectmgr.plt		task	spdegabrielle	accepted	2009-12-23T12:28:15-0500	2009-12-29T06:25:08-0500	If you could add that to the docs, it might save someone the puzzled 5 minutes I just spent. :-)	toddobryan@…
4		556	nba finals	murphy/9p.plt		task	murphy	new	2013-05-26T00:45:07-0400	2013-05-26T00:45:07-0400	courtside tickets to Miami vs pacers game 5	justinphilliphill@…
5		195	prime? of neg. number doesn't end	soegaard/math.plt		defect	soegaard	new	2009-08-01T18:23:42-0400	2009-08-01T18:23:42-0400	"for example: (prime? -99)
Obviously only an abs is needed."	carolynoates@…
5		313	Documentation bug: Incorrect SCRBL markup	dutchyn/aspectscheme.plt		defect	dutchyn	new	2010-12-04T17:15:08-0500	2010-12-04T17:15:08-0500	"@link{http://blahblah/} was used instead of @url{http://blahblah/}, resulting in blank links in the manual.
"	anonymous
5		241	f4 toggle menu item does not show keyboard shortcut	divascheme/divascheme.plt		enhancement	dyoo	assigned	2009-12-29T06:57:41-0500	2011-08-11T01:38:30-0400	"It feels trivial, but little things help users.
(Im running OS X)
"	spdegabrielle
5		322	Racket v5.1 for/vector	wmfarr/simple-matrix.plt		enhancement	wmfarr	new	2011-02-23T11:43:17-0500	2011-02-23T11:43:17-0500	"Since version 5.1 of DrRacket the for/vector and for*/vector function is standard included in the #lang racket library. So when loading the simple-matrix module some errors are generated:
""module: identifier already imported from a different source""

Maybe removing the for/vector, for*/vector from the module isn't that a bad idea then?

Furthermore the base one is a bit further extended:
#lang racket: 
(for/vector (for-clause ...) body ...+)
(for/vector #:length length-expr (for-clause ...) body ...+)

Simple-matrix:
(for/vector length-expr (for-clause ...) body)


Offtopic: I would like to thank you for the module, saved me some time writing it myself, cheers!

Kind regards,
Tim Coppieters.
VUB
"	Tim Coppieters
5		414	Support vectors	dherman/json.plt		enhancement	dherman	new	2012-03-08T22:04:30-0500	2012-03-08T22:04:30-0500	"I would love it if this module supported vectors as JSON arrays. Then it would nicely interoperate with Jay !McCarthy's mongodb module, and decode the BSON it produces.

The workaround I use has this small change to lines 17-18:
{{{
  [(or (list? json)
       (vector? json))
}}}
"	simon.haines@…
