main.ss
#lang scheme/base
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; XML.plt - XML related utility
;;
;; Bonzai Lab, LLC.  All rights reserved.
;;
;; Licensed under LGPL.
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; main.ss - provide all other modules...
;; yc 12/22/2009 - first version
;; yc 2/13/2010 - reexport sxml, ssax, and xml, and exclude call-with-input-string & with-input-from-string
(require "port.ss" "xml.ss" "entity.ss"
         (planet lizorkin/sxml:2:1)
         (planet lizorkin/ssax:2:0/ssax)
         xml
         )
(provide (except-out (all-from-out "xml.ss" "port.ss" "entity.ss" 
                                   (planet lizorkin/sxml:2:1) 
                                   (planet lizorkin/ssax:2:0/ssax)
                                   xml)
                     ;; the call-with-input-string & with-input-from-string
                     ;; exported via (planet lizorkin/ssax:2:0/myenv)
                     ;; conflicts with scheme/port and is of no use for our purpose
                     call-with-input-string
                     with-input-from-string))