All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m41s
Replace Python GET page handlers with declarative defpage definitions in .sx files across all 8 apps (sx docs, orders, account, market, cart, federation, events, blog). Each app now has sxc/pages/ with setup functions, layout registrations, page helpers, and .sx defpage declarations. Core infrastructure: add g I/O primitive, PageDef support for auth/layout/ data/content/filter/aside/menu slots, post_author auth level, and custom layout registration. Remove ~1400 lines of render_*_page/render_*_oob boilerplate. Update all endpoint references in routes, sx_components, and templates to defpage_* naming. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
946 B
Plaintext
38 lines
946 B
Plaintext
;; Market app defpage declarations.
|
|
;;
|
|
;; all-markets-index: / — global view across all pages
|
|
;; page-markets-index: / (on page_markets bp, mounted at /<slug>)
|
|
;; page-admin: / (on page_admin bp, mounted at /<slug>/admin)
|
|
;; market-home: / (on browse bp, mounted at /<page_slug>/<market_slug>)
|
|
;; market-admin: / (on admin bp, mounted at /<page_slug>/<market_slug>/admin)
|
|
|
|
(defpage all-markets-index
|
|
:path "/"
|
|
:auth :public
|
|
:layout :root
|
|
:content (all-markets-content))
|
|
|
|
(defpage page-markets-index
|
|
:path "/"
|
|
:auth :public
|
|
:layout :post
|
|
:content (page-markets-content))
|
|
|
|
(defpage page-admin
|
|
:path "/"
|
|
:auth :admin
|
|
:layout (:post-admin :selected "markets")
|
|
:content (page-admin-content))
|
|
|
|
(defpage market-home
|
|
:path "/"
|
|
:auth :public
|
|
:layout :market
|
|
:content (market-home-content))
|
|
|
|
(defpage market-admin
|
|
:path "/"
|
|
:auth :admin
|
|
:layout (:market-admin :selected "markets")
|
|
:content (market-admin-content))
|