-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.ss
31 lines (22 loc) · 877 Bytes
/
info.ss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#lang setup/infotab
(define name "Dispatch")
(define blurb
'((p "Bidirectional mapping between web application URLs and controller procedures.")))
(define release-notes
'((p "Changes and additions:")
(ul (li "new syntaxes for " (tt "define-site") " and " (tt "define-controller") ";")
(li "tools for restricting access to controllers;")
(li "tools for creating hyperlinks between controllers;")
(li "runtime (re)configuration of URLs;")
(li "dropped pipelines in favour of simpler wrapper procedures;")
(li "Mirrors support."))))
(define categories '(net devtools))
(define primary-file "main.ss")
(define scribblings '(("scribblings/dispatch.scrbl" ())))
(define required-core-version "4.2.1")
(define repositories '("4.x"))
(define compile-omit-paths
'("autoplanet.ss"
"build.ss"
"planet"
"planetdev"))