contrib/ load fixes

slava 2006-08-25 04:25:43 +00:00
parent 60773dd493
commit 37d07053e6
6 changed files with 25 additions and 13 deletions

View File

@ -7,6 +7,7 @@ Modules can be loaded from the listener:
Credits:
- action-field -- Extended field gadget for UI (Eduardo Cavazos)
- automata -- Graphics demo for the UI (Eduardo Cavazos)
- boids -- Graphics demo for the UI (Eduardo Cavazos)
- cairo -- cairo bindings (Sampo Vuori)
@ -15,10 +16,15 @@ Credits:
- coroutines -- coroutines (Chris Double)
- crypto -- Various cryptographic algorithms (Doug Coleman)
- dlists -- double-linked-lists (Mackenzie Straight)
- emacs -- emacs integration (Eduardo Cavazos)
- embedded -- simple template processor (Alex Chapman)
- factory -- X11 window manager (Eduardo Cavazos)
- gap-buffer -- Efficient text editor buffer (Alex Chapman)
- hexdump -- Hexdump routine (Doug Coleman)
- httpd -- Web framework (HTTP server, client, XML parser, HTML generation...) (Slava Pestov, Chris Double, Daniel Ehrenberg)
- jedit -- jEdit editor integration (Slava Pestov)
- json -- JSON reader and writer (Chris Double)
- lambda -- Lambda calculus interpreter (Matthew Willis)
- lazy-lists -- Lazy evaluation lists (Chris Double, Matthew Willis)
- math -- extended math library (Doug Coleman, Slava Pestov)
- parser-combinators -- Haskell-style parser combinators (Chris Double)
@ -29,4 +35,8 @@ Credits:
- space-invaders -- Intel 8080-based Space Invaders arcade machine emulator (Chris Double)
- splay-trees -- Splay trees (Mackenzie Straight)
- sqlite -- SQLite binding (Chris Double)
- topology -- Computational algebraic topology (Slava Pestov)
- units -- Unit conversion (Doug Coleman)
- vars -- Alternative syntax for variables (Eduardo Cavazos)
- vim -- VIM integration (Alex Chapman)
- x11 -- X Window System client library (Eduardo Cavazos)

View File

@ -1,9 +1,10 @@
USING: kernel modules words ;
REQUIRES: automata boids cairo calendar concurrency coroutines
crypto dlists embedded gap-buffer hexdump httpd lambda math postgresql
process random-tester slate splay-trees sqlite topology units
vars ;
crypto dlists emacs embedded gap-buffer hexdump httpd jedit
json lambda lazy-lists math parser-combinators postgresql
process random-tester slate space-invaders splay-trees sqlite
topology units vars vim ;
"x11" vocab [
"factory" require

View File

@ -1,6 +1,7 @@
REQUIRES: process ;
USING: definitions kernel parser words sequences math process ;
USING: definitions kernel parser words sequences math process
namespaces ;
IN: emacs

View File

@ -14,7 +14,7 @@ IN: random-tester
1+ 1- >bignum >digit >fixnum abs absq arg
bitnot bits>double bits>float ceiling cis conjugate cos cosec cosech
cosh cot coth denominator double>bits exp float>bits floor imaginary
log neg numerator quadrant real sec ! next-power-of-2
log neg numerator real sec ! next-power-of-2
sech sgn sin sinh sq sqrt tan tanh truncate
} ;
@ -39,7 +39,7 @@ IN: random-tester
1+ 1- >bignum >digit >fixnum abs absq arg
bitnot bits>double bits>float ceiling cis conjugate cos cosec cosech
cosh cot coth denominator double>bits exp float>bits floor imaginary
log neg next-power-of-2 numerator quadrant real sec
log neg next-power-of-2 numerator real sec
sech sgn sin sinh sq sqrt tan tanh truncate
} ;
@ -48,7 +48,7 @@ IN: random-tester
1+ 1- >bignum >digit >fixnum abs absq arg ceiling
cis conjugate cos cosec cosech
cosh cot coth double>bits exp float>bits floor imaginary
log neg next-power-of-2 quadrant real sec
log neg next-power-of-2 real sec
sech sgn sin sinh sq sqrt tan tanh truncate
} ;
@ -57,14 +57,14 @@ IN: random-tester
1+ 1- >bignum >digit >fixnum abs absq arg
ceiling cis conjugate cos cosec cosech
cosh cot coth double>bits exp float>bits floor imaginary
log neg quadrant real sec ! next-power-of-2
log neg real sec ! next-power-of-2
sech sgn sin sinh sq sqrt tan tanh truncate
} ;
: 1-complex>x
{
1+ 1- abs absq arg conjugate cos cosec cosech
cosh cot coth exp imaginary log neg quadrant real
cosh cot coth exp imaginary log neg real
sec sech sin sinh sq sqrt tan tanh
} ;
@ -86,7 +86,7 @@ IN: random-tester
1+ 1- >bignum >digit >fixnum abs absq
bitnot ceiling conjugate
denominator double>bits float>bits floor imaginary
neg next-power-of-2 numerator quadrant
neg next-power-of-2 numerator
real sgn sq truncate
} ;
@ -104,7 +104,7 @@ IN: random-tester
1+ 1- abs absq arg
conjugate cosec cosech
cosh cot coth exp
log neg quadrant
log neg
sech sin sinh sq sqrt tanh
} ;