-# $Id: Makefile.in,v 1.4 2001/10/05 15:43:38 cph Exp $
+# $Id: Makefile.in,v 1.5 2001/10/05 15:58:10 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
AUXDIR = @AUXDIR@
RODIR = $(AUXDIR)/options
RUNOPTS = chrsyn cpress format gdbm hashtb krypt mime-codec numint optiondb \
- ordvec process rbtree regexp rexp rgxcmp syncproc wttree ystep
+ ordvec process rbtree regexp rexp rgxcmp syncproc url wttree ystep
all:
echo "No ALL action"
#| -*- Scheme -*-
-$Id: ed-ffi.scm,v 1.26 2001/10/05 15:48:10 cph Exp $
+$Id: ed-ffi.scm,v 1.27 2001/10/05 15:58:12 cph Exp $
Copyright (c) 1988-2001 Massachusetts Institute of Technology
syntax-table/system-internal)
("uproc" (runtime procedure)
syntax-table/system-internal)
+ ("url" (runtime url)
+ syntax-table/system-internal)
("urtrap" (runtime reference-trap)
syntax-table/system-internal)
("usrint" (runtime user-interface)
#| -*-Scheme-*-
-$Id: optiondb.scm,v 1.10 2001/10/05 15:43:43 cph Exp $
+$Id: optiondb.scm,v 1.11 2001/10/05 15:58:15 cph Exp $
Copyright (c) 1994-2001 Massachusetts Institute of Technology
(STEPPER (RUNTIME STEPPER) #F "ystep")
(SUBPROCESS (RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process")
(SYNCHRONOUS-SUBPROCESS (RUNTIME SYNCHRONOUS-SUBPROCESS) #F "syncproc")
+ (URL (RUNTIME url) #F "url")
(WT-TREE (RUNTIME WT-TREE) #F "wttree")
))
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.377 2001/10/05 15:43:46 cph Exp $
+$Id: runtime.pkg,v 14.378 2001/10/05 15:58:18 cph Exp $
Copyright (c) 1988-2001 Massachusetts Institute of Technology
encode-quoted-printable:update
make-decode-base64-port
make-decode-binhex40-port
- make-decode-quoted-printable-port))
\ No newline at end of file
+ make-decode-quoted-printable-port))
+
+(define-package (runtime url)
+ (file-case options
+ ((load) "url")
+ (else))
+ (parent ())
+ (export ()
+ url:char-set:escaped
+ url:char-set:extra
+ url:char-set:national
+ url:char-set:punctuation
+ url:char-set:reserved
+ url:char-set:safe
+ url:char-set:unescaped
+ url:char-set:unreserved
+ url:decode-string
+ url:decode-substring
+ url:encode-string
+ url:encode-substring
+ url:rexp:escape
+ url:rexp:host
+ url:rexp:hostname
+ url:rexp:hostnumber
+ url:rexp:hostport
+ url:rexp:uchar
+ url:rexp:xchar
+ url:string-encoded?
+ url:substring-encoded?))
\ No newline at end of file