-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.lisp
48 lines (45 loc) · 1.1 KB
/
package.lisp
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
(defpackage #:weblocks-utils
(:use :cl :weblocks :weblocks-stores :clache :weblocks-tree-widget)
(:documentation
"Utility functions for weblocks framework")
(:export
; weblocks-utils
#:memory-poweredp
#:prevalence-poweredp
#:clsql-poweredp
#:first-by
#:count-by
#:count-of
#:count-by-values
#:all-of
#:find-by-values
#:find-by
#:first-by-values
#:delete-all
#:delete-one
#:first-of
; debug-utils
#:object->simple-plist
#:first-active-webapp
#:maybe-with-first-active-webapp
; session-debug
#:first-active-session
#:debug-session
#:debug-first-session
#:debug-single-session
#:enter-first-active-session
#:with-first-active-session
#:with-active-session-by-id
#:start-debug-app
#:with-object-cache
#:*default-cache-store*
#:related-record-field
#:multiple-related-records-field
#:require-assets
#:prepend-webapp-path
#:ps-with-scripts
#:ps-with-styles
#:ps-with-scripts-and-styles
#:make-form
#:truncate-string
#:describe-set))