|
Revision 2178, 322 bytes
(checked in by hhubner, 1 year ago)
|
Patch from Kamen Tomov to isolate CXML from the datastore. In order to get
this compiled, I moved FIND-ALL from the BOS project to bknr/src/utils.
|
| Line | |
|---|
| 1 |
(in-package :cl-user) |
|---|
| 2 |
|
|---|
| 3 |
(defpackage :bknr.xml |
|---|
| 4 |
(:use :cl |
|---|
| 5 |
:cl-ppcre |
|---|
| 6 |
:cl-interpol |
|---|
| 7 |
:cxml-xmls) |
|---|
| 8 |
(:shadowing-import-from :cl-interpol "QUOTE-META-CHARS") |
|---|
| 9 |
(:export |
|---|
| 10 |
#:node-children-nodes |
|---|
| 11 |
#:find-child |
|---|
| 12 |
#:find-children |
|---|
| 13 |
#:node-string-body |
|---|
| 14 |
#:node-attribute |
|---|
| 15 |
#:node-child-string-body |
|---|
| 16 |
#:node-to-html)) |
|---|