Fri Nov 13 05:19:55 UTC 2009  pix@kepibu.org
  * Time-based checkin
  Renames some things, but mostly just doing this because it's a good time too.
addfile ./css-selector-unifier.asd
hunk ./css-selector-unifier.asd 1
+
+(asdf:defsystem css-selector-unifier
+  :version "0"
+  :description "cl-unification templates using CSS-style selectors"
+  :maintainer " <pix@kepibu.org>"
+  :author " <pix@kepibu.org>"
+  :licence "BSD-style"
+  :depends-on (:closure-html :cxml :cl-ppcre :cl-unification :split-sequence)
+  :serial t
+  ;; components likely need manual reordering
+  :components ((:file "package")
+               (:file "regexp-template")
+               #+(or) (:file "tests")
+               (:module traversal
+                        :components
+                        ((:file "interface")
+                         (:file "lhtml" :depends-on ("interface"))
+                         (:file "pt" :depends-on ("interface"))))
+               (:file "unification-templates")))
replace ./package.lisp [A-Za-z0-9-] attribute element-attribute
replace ./package.lisp [A-Za-z0-9-] children element-children
replace ./package.lisp [A-Za-z0-9-] classes element-classes
replace ./package.lisp [A-Za-z0-9-] id element-id
replace ./package.lisp [A-Za-z0-9-] parent element-parent
replace ./package.lisp [A-Za-z0-9-] type element-type
replace ./package.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./regexp-template.lisp [A-Za-z0-9-] attribute element-attribute
replace ./regexp-template.lisp [A-Za-z0-9-] children element-children
replace ./regexp-template.lisp [A-Za-z0-9-] classes element-classes
replace ./regexp-template.lisp [A-Za-z0-9-] id element-id
replace ./regexp-template.lisp [A-Za-z0-9-] parent element-parent
replace ./regexp-template.lisp [A-Za-z0-9-] type element-type
replace ./regexp-template.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./tests.lisp [A-Za-z0-9-] attribute element-attribute
replace ./tests.lisp [A-Za-z0-9-] children element-children
replace ./tests.lisp [A-Za-z0-9-] classes element-classes
replace ./tests.lisp [A-Za-z0-9-] id element-id
replace ./tests.lisp [A-Za-z0-9-] parent element-parent
replace ./tests.lisp [A-Za-z0-9-] type element-type
replace ./tests.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./traversal/interface.lisp [A-Za-z0-9-] attribute element-attribute
replace ./traversal/interface.lisp [A-Za-z0-9-] children element-children
replace ./traversal/interface.lisp [A-Za-z0-9-] classes element-classes
replace ./traversal/interface.lisp [A-Za-z0-9-] id element-id
replace ./traversal/interface.lisp [A-Za-z0-9-] parent element-parent
replace ./traversal/interface.lisp [A-Za-z0-9-] type element-type
hunk ./traversal/interface.lisp 28
-(defgeneric type-equal (element element-type)
+(defgeneric type-equal (element type)
hunk ./traversal/interface.lisp 30
-  (:method (element element-type) (string-equal element-type (element-type element))))
+  (:method (element type) (string-equal type (element-type element))))
replace ./traversal/interface.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./traversal/lhtml.lisp [A-Za-z0-9-] attribute element-attribute
replace ./traversal/lhtml.lisp [A-Za-z0-9-] children element-children
replace ./traversal/lhtml.lisp [A-Za-z0-9-] classes element-classes
replace ./traversal/lhtml.lisp [A-Za-z0-9-] id element-id
replace ./traversal/lhtml.lisp [A-Za-z0-9-] parent element-parent
replace ./traversal/lhtml.lisp [A-Za-z0-9-] type element-type
replace ./traversal/lhtml.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./traversal/pt.lisp [A-Za-z0-9-] attribute element-attribute
replace ./traversal/pt.lisp [A-Za-z0-9-] children element-children
replace ./traversal/pt.lisp [A-Za-z0-9-] classes element-classes
replace ./traversal/pt.lisp [A-Za-z0-9-] id element-id
replace ./traversal/pt.lisp [A-Za-z0-9-] parent element-parent
replace ./traversal/pt.lisp [A-Za-z0-9-] type element-type
replace ./traversal/pt.lisp [A-Za-z0-9-] type-equal element-type-equal
replace ./unification-templates.lisp [A-Za-z0-9-] attribute element-attribute
replace ./unification-templates.lisp [A-Za-z0-9-] children element-children
replace ./unification-templates.lisp [A-Za-z0-9-] classes element-classes
replace ./unification-templates.lisp [A-Za-z0-9-] id element-id
replace ./unification-templates.lisp [A-Za-z0-9-] parent element-parent
replace ./unification-templates.lisp [A-Za-z0-9-] type element-type
replace ./unification-templates.lisp [A-Za-z0-9-] type-equal element-type-equal