Matthias Felleisen
d9176df246
replaced gamepad image with higher resolution version
2012-01-09 19:13:52 -05:00
Matthew Flatt
d56d28f0b6
protect `raco setup' from files in linked collection dirs
...
Patch by Jay McCarthy.
Merge to 5.2.1
2012-01-09 16:55:39 -07:00
Matthew Flatt
8b54dc43c8
fix problem printing symbols with unicode chars
...
Specifically, special-casing letters (such as sigma) were not
handled correctly.
Merge to 5.2.1
2012-01-09 16:55:39 -07:00
Matthew Flatt
7b4fd9b275
make draw-mem test more reliable
2012-01-09 16:08:28 -07:00
Matthew Flatt
23010fc495
add #:fail' option to
collection-file-path' and `collection-path'
...
Merge a variant to 5.2.1
2012-01-09 15:59:05 -07:00
Matthew Flatt
0d47cea848
collapse Racket HISTORY.txt for v5.2.1
...
Merge to 5.2.1
2012-01-09 15:59:05 -07:00
Matthew Flatt
3b87b73555
make scriblib/figure' work with
scribble/jfp'
2012-01-09 13:29:56 -07:00
Matthew Flatt
3d76aa5c32
fix I/O race in test
2012-01-09 13:29:56 -07:00
Robby Findler
6cacd57ebc
add check-redundancy, a parameter that causes redex to print some
...
debugging information about ambiguous matching (when the ambiguity
matters)
2012-01-09 12:57:24 -06:00
Robby Findler
a12df9cea6
redex: misc cleanups:
...
- remove cache instrumentation code
- make hole->not-hole parsimonous
- change the cache size back to 63
2012-01-09 12:57:23 -06:00
Robby Findler
0c6e0a11cf
removed ambiguity from the cont-mark-transform's "a" non-terminal
...
Redex no longer has extra checks to eliminate redundant matches
(as those checks are prohibitively expensive for the lambdajs model)
so redundancy in the grammar can, when combined with context
decomposition or named patterns, lead to significant slowdowns
2012-01-09 12:57:22 -06:00
Robby Findler
4fab7f76af
tweak the compiled representation of lw structs so they take less space
...
this shrinks the size of redex/examples/r6rs/r6rs.rkt's .zo file by about 25%
2012-01-09 12:57:21 -06:00
Robby Findler
2afda360d0
redex: adjust the test suites to clean up a few things; also make the
...
hole and the-not-hole equal? to each other (like they used to be)
2012-01-09 12:57:20 -06:00
Robby Findler
93c21e34de
added a cycle check to define-language so grammars like this one:
...
(define-language L
(e e))
are rejected as syntax errors
2012-01-09 12:57:19 -06:00
Jon Rafkind
ec02c2f83a
[honu] refactor dot into syntax classes
2012-01-09 10:38:12 -07:00
Jon Rafkind
13abcf91fb
[honu] make dot a fixture so that assignment can work: v.x := 5
2012-01-09 10:38:11 -07:00
Jon Rafkind
c9788909ea
[honu] fix for literal sets generated in a macro. replace . with -> for classes in the linq example
2012-01-09 10:38:11 -07:00
Jon Rafkind
8bb8ac5859
[honu] provide #%top and #%datum for standard honu
2012-01-09 10:38:11 -07:00
Jon Rafkind
dc16449dd5
[honu] change to honu extension
2012-01-09 10:38:11 -07:00
Eli Barzilay
d539792895
* Fix showing branch in non-master builds.
...
* Show error in last status, so it's visible later.
* `show' can get a `-s' flag too.
* Remove unused `append_dots'.
2012-01-09 07:36:37 -05:00
Eli Barzilay
536f89926f
ntoronto is responsible for images.
2012-01-09 07:36:37 -05:00
Ryan Culpepper
c310292f60
Post-release version for the v5.2.1 release
2012-01-08 23:41:47 -07:00
Ryan Culpepper
f9339d6903
restore some of deleted unstable docs into web-server-internal docs
2012-01-08 23:25:53 -07:00
Ryan Culpepper
dba35c3116
db: added nested transactions
2012-01-08 23:25:53 -07:00
Ryan Culpepper
62e117bfe6
added tests for srfi/13 from SXML codebase
2012-01-08 23:25:53 -07:00
Eli Barzilay
62213b9f28
Allow cross-site use of the status script.
...
Also a random header change, and adjust cache frequency.
2012-01-08 21:59:04 -05:00
Matthew Flatt
8d9614c41c
better JIT repair
...
I'm fairly certain that the change in commit 25e9bd2a190acf861 isn't
right, but I'm having trouble generating tests to demonstrate the
original bug or this correction.
2012-01-08 15:37:05 -07:00
Eli Barzilay
b24e0d52ea
Another typo.
2012-01-08 15:23:34 -05:00
Matthew Flatt
824e540cb0
fix JIT bug
2012-01-08 12:14:51 -07:00
Matthew Flatt
7153fbd4d5
net/mime: allow any subtype, exns as exn:fail subtypes; doc fixes
2012-01-08 12:14:51 -07:00
Robby Findler
bb2ebb6ad6
redex: added note about optimizations
2012-01-08 12:13:53 -06:00
Robby Findler
fbed2d5af7
remove (broken) attempt at optimization Jay suggested
...
also clean up some test cases that I wasn't sure about earlier
2012-01-08 12:13:37 -06:00
Robby Findler
0459e4fbcd
redex: when there are no duplicate names in a pattern, don't do the
...
same-name-same-bindings check
this seems to speed up the r6rs test suite by about 12% and the
lambdajs benchmark by about 25%
2012-01-08 12:13:36 -06:00
Robby Findler
ddecad0575
redex: adjust the way metafunction tracing is printed so you
...
don't see (list 'lambda (list 'x) 'x) but instead (lambda (x) x)
2012-01-08 12:13:36 -06:00
Eli Barzilay
86579b4f15
Yet more tweaks and fixes.
2012-01-08 12:58:50 -05:00
Robby Findler
95ac3c86f7
fixed bug in the way aug:keymap extracts the names
...
now it should return only the canonical names of the keybindings
(instead of potentially returning both the canonical and
non-canonicalized names)
2012-01-08 07:07:56 -06:00
Robby Findler
3bc1e8f3c0
Change the keybindings dialog to be a frame, and make it react
...
to changes in focus
closes PR 12474
2012-01-08 06:55:50 -06:00
Eli Barzilay
e0275b95ba
Drop Infogroep mirror.
...
(Keeps timing out.)
2012-01-08 03:36:50 -05:00
Eli Barzilay
107615f1fe
Some more improvements and fixes.
2012-01-08 03:36:50 -05:00
Matthew Flatt
9389947f6f
clarify docs on is-enabled?' and
is-shown?'
2012-01-07 21:17:12 -07:00
Matthew Flatt
fd019a3478
add on-subwindow-focus' to
window<%>'
...
relevant to PR 12474
2012-01-07 21:17:12 -07:00
Matthew Flatt
9ff30672fc
add deprecation note for the ActiveX part of MysterX
2012-01-07 21:17:12 -07:00
Robby Findler
78ac4d3d27
fix syntax error message display for new way that drracket's ports handle printing of snips
2012-01-07 21:04:26 -06:00
Ryan Culpepper
ca3584452e
update dist specs for icons fix, new images collection
2012-01-07 17:55:54 -07:00
Neil Toronto
89a5afa96d
Purged last SVG file
2012-01-07 16:32:56 -07:00
Neil Toronto
1a00d2d51f
Last icon rewrite!
...
This removes all the SVG sources, parsing, and marked-layer colorizing, the PNG binaries in the distribution, and the dependence of DrRacket on `slideshow/pict'.
Icons are now produced by drawing on a bitmap-dc%, inferring or building a z map, choosing a material, and sending these to a two-pass ray tracer. This is for the most part hidden behind an API consisting of functions from colors and optional sizes and materials to `bitmap%'s.
Contracts and documentation forthcoming.
2012-01-07 16:18:11 -07:00
Philippe Meunier
67beec3ae9
Updates French translation file and fixes small mistake in English one.
2012-01-08 04:25:16 +09:00
Eli Barzilay
465a8da995
Add status script.
2012-01-07 09:35:15 -05:00
Eli Barzilay
efc5a05049
Delete build directory at the start of a dispatched build.
...
Previously, if a dispatched build failed the files from the previous
build would still get copied. This was an intentional feature, since
only the compiled binaries of these builds are used, and usually these
would work fine (with the zo files that were built on the main machine).
Now, the build directory is deleted when starting, which means that any
failure in a remote build means that the whole build will fail. This
turns out to be better since when there are problems, the previous
behavior could be very confusing. In addition, the racket setup itself
rarely fails, so this won't make a difference.
2012-01-07 09:35:14 -05:00
Eli Barzilay
ecf42d077b
More build improvements.
...
* Use `ssh' to copy the repo tgz, so it can also create the build
directory in a single connection.
* Use "racket" in the build materials directory name (since it's used in
random machines).
* Use `chcon' to make files accessible to the web server under selinux.
* "YYYY-MM-DD HH:MM" in log time strings (leave the one on the web page
as is).
* Uniform machine+platform labels in headers on dispatched builds. The
main build machine doesn't have them.
2012-01-07 09:35:14 -05:00