aboutsummaryrefslogtreecommitdiffhomepage
path: root/vampire.lisp
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-10-26 14:14:30 -0500
committerColin Okay <colin@cicadas.surf>2022-10-26 14:14:30 -0500
commitb500349671a80de641a18b9a28125071e7dfa6e7 (patch)
tree135d9bb671d23d3366f28b03d38c42d8a8ae2cf9 /vampire.lisp
parentb1b3fcf39cdf7bae870d2dbc8eea172ac806f6b2 (diff)
Fix+Add: eval-when of defclass/bknr; track upload form;
Diffstat (limited to 'vampire.lisp')
-rw-r--r--vampire.lisp38
1 files changed, 0 insertions, 38 deletions
diff --git a/vampire.lisp b/vampire.lisp
index eef75cc..cf6accc 100644
--- a/vampire.lisp
+++ b/vampire.lisp
@@ -79,44 +79,6 @@
url)))))))
-
-
-
-
-;; (defun create-track-form (parent playlist &rest args)
-;; (declare (ignorable args))
-;; (with-clog-create parent
-;; (div ()
-;; (section (:h3 :content "Add Track"))
-;; (label (:content "Paste URL: " :bind url-label))
-;; (form-element (:text :bind url-input))
-;; (button (:content "Fetch Track" :bind submit-button))
-;; (div (:bind notice-area)))
-;; (label-for url-label url-input)
-;; (setf (place-holder url-input) "https://www.youtube.com/watch?v=dQw4w9WgXcQ")
-;; (set-on-click
-;; submit-button
-;; (alambda
-;; (let* ((url
-;; (value url-input))
-;; (notice
-;; (create-p notice-area :content (format nil "... Fetching ~a" url))))
-;; (setf (value url-input) "")
-;; (add-fetch-track-job
-;; url
-;; (lambda (track)
-;; (remove-from-dom notice)
-;; (append-track playlist track)
-;; (add-track-to-listing parent track))
-;; (lambda (err)
-;; (remove-from-dom notice)
-;; (format t "Error: ~a~%" err)
-;; (alert (window (connection-body parent))
-;; (format nil "Error while fetching track at: ~a~%"
-;; url)))))))))
-
-
-
(defun user-page (body)
(if-let (user (session-user body))
(with-clog-create body