Rebrand sexp → sx across web platform (173 files)
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 11m37s

Rename all sexp directories, files, identifiers, and references to sx.
artdag/ excluded (separate media processing DSL).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 11:06:57 +00:00
parent 17cebe07e7
commit e8bc228c7f
174 changed files with 3126 additions and 2952 deletions

View File

@@ -16,7 +16,7 @@ from .services.entries import (
)
from shared.browser.app.authz import require_admin
from shared.browser.app.redis_cacher import clear_cache
from shared.sexp.helpers import sexp_response
from shared.sx.helpers import sx_response
from bp.calendar_entry.routes import register as register_calendar_entry
@@ -217,7 +217,7 @@ def register():
if ident["session_id"] is not None:
frag_params["session_id"] = ident["session_id"]
# Re-query day entries for the sexp component
# Re-query day entries for the sx component
from datetime import date as date_cls, timedelta
from bp.calendar.services import get_visible_entries_for_period
from quart import session as qsession
@@ -258,10 +258,10 @@ def register():
"styles": styles,
}
from sexp.sexp_components import render_day_main_panel
from sx.sx_components import render_day_main_panel
html = render_day_main_panel(ctx)
mini_html = await fetch_fragment("cart", "cart-mini", params=frag_params, required=False)
return sexp_response(html + (mini_html or ""))
return sx_response(html + (mini_html or ""))
@bp.get("/add/")
async def add_form(day: int, month: int, year: int, **kwargs):