-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.lisp
More file actions
47 lines (46 loc) · 1006 Bytes
/
package.lisp
File metadata and controls
47 lines (46 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;;;; package.lisp
(defpackage 1forms
(:use :cl :alexandria :cl-markup)
(:export
:field-error
:field-error-field
:field-error-message
:render-field
:field :field-name :field-id :field-prefix :field-label :field-str :field-validator
:input-field :input-type :input-disabled :input-extra
:get-field-id
:input-attrs
:to-lisp
:string-field
:form :form-data :form-errors :form-initials :form-fields
:validate :full-validate
:render-label
:validate-field
:form-boundp
:form-to-plist
:accept-value
:render-form
:def-form
:validate-length
:validate-regex
:password-field
:process-form
:bind-form
:*form-template-directory*
:*default-form-template*
:form-vars
:select-field
:select-choices
:finalize
:hidden-field
:formset
:bind-formset
:render-formset
:def-formset
:spawn-form
:formset-forms
:formset-form-class
:formset-form-initargs
:make-choices
:validate-integer-str
:validator))