info.ss
#lang setup/infotab

(define name "Scheme Utilities: (planet cce/scheme)")

(define blurb
  '("PLT Scheme programming utilities, including tools for:"
    (ul
     (li "classes and objects,")
     (li "higher order functions,")
     (li "imperative queues,")
     (li "module imports and exports,")
     (li "sandboxed evaluation,")
     (li "syntax objects,")
     (li "textual data,")
     (li "multiple values,")
     (li "and web pages."))))

(define release-notes
  '("2.0: Significant changes and additions. "
    "New modules provide tools for: "
    (ul
     (li "module imports and exports,")
     (li "sandboxed evaluation,")
     (li "web page and style sheets."))
    "Interface changes include: "
    (ul
     (li "function.ss: "
         (ul
          (li "partial application: "
              "replaced curry* and curryr* with papply and papply*")
          (li "currying: added curryn and currynr")))
     (li "syntax.ss: "
         "to-datum no longer traverses substructure of data")
     (li "text.ss: "
         (ul
          (li "text-append: added #:before, #:between, and #:after keywords")
          (li "comparisons: added text<=? and text>=?"))))))

(define categories '(devtools))

(define can-be-loaded-with 'all)

(define homepage "http://www.ccs.neu.edu/home/cce/software.html")

(define primary-file "main.ss")

(define repositories '("4.x"))

(define compile-omit-paths '("test"))

(define scribblings '(["scribblings/main.scrbl" (multi-page)]))