├── ChangeLog ├── acl └── custom.lisp ├── allegrocl └── custom.lisp ├── backends.lisp ├── circularities.lisp ├── cl-store-xml.noasd ├── cl-store.asd ├── clisp ├── custom.lisp └── mop.lisp ├── cmucl ├── custom-xml.lisp └── custom.lisp ├── default-backend.lisp ├── doc ├── cl-store.texi ├── index.html └── style.css ├── licence ├── lispworks ├── custom-xml.lisp └── custom.lisp ├── openmcl └── custom.lisp ├── package.lisp ├── plumbing.lisp ├── readme ├── sbcl ├── custom-xml.lisp └── custom.lisp ├── tests.lisp ├── utils.lisp ├── xml-backend.lisp ├── xml-package.lisp └── xml-tests.lisp /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/ChangeLog -------------------------------------------------------------------------------- /acl/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/acl/custom.lisp -------------------------------------------------------------------------------- /allegrocl/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/allegrocl/custom.lisp -------------------------------------------------------------------------------- /backends.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/backends.lisp -------------------------------------------------------------------------------- /circularities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/circularities.lisp -------------------------------------------------------------------------------- /cl-store-xml.noasd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/cl-store-xml.noasd -------------------------------------------------------------------------------- /cl-store.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/cl-store.asd -------------------------------------------------------------------------------- /clisp/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/clisp/custom.lisp -------------------------------------------------------------------------------- /clisp/mop.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/clisp/mop.lisp -------------------------------------------------------------------------------- /cmucl/custom-xml.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/cmucl/custom-xml.lisp -------------------------------------------------------------------------------- /cmucl/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/cmucl/custom.lisp -------------------------------------------------------------------------------- /default-backend.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/default-backend.lisp -------------------------------------------------------------------------------- /doc/cl-store.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/doc/cl-store.texi -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/doc/style.css -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/licence -------------------------------------------------------------------------------- /lispworks/custom-xml.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/lispworks/custom-xml.lisp -------------------------------------------------------------------------------- /lispworks/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/lispworks/custom.lisp -------------------------------------------------------------------------------- /openmcl/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/openmcl/custom.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/package.lisp -------------------------------------------------------------------------------- /plumbing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/plumbing.lisp -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/readme -------------------------------------------------------------------------------- /sbcl/custom-xml.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/sbcl/custom-xml.lisp -------------------------------------------------------------------------------- /sbcl/custom.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/sbcl/custom.lisp -------------------------------------------------------------------------------- /tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/tests.lisp -------------------------------------------------------------------------------- /utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/utils.lisp -------------------------------------------------------------------------------- /xml-backend.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/xml-backend.lisp -------------------------------------------------------------------------------- /xml-package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/xml-package.lisp -------------------------------------------------------------------------------- /xml-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skypher/cl-store/HEAD/xml-tests.lisp --------------------------------------------------------------------------------