2026-03-29 23:39:03 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<meta name="author" content="Disco DeDisco">
|
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css"/>
|
|
|
|
|
<link rel="stylesheet" href="lib/jasmine-6.0.1/jasmine.css">
|
|
|
|
|
|
|
|
|
|
<title>Jasmine Spec Runner</title>
|
|
|
|
|
<link rel="stylesheet" href="lib/jasmine.css">
|
|
|
|
|
|
|
|
|
|
<!-- Jasmine -->
|
|
|
|
|
<script src="lib/jasmine-6.0.1/jasmine.js"></script>
|
|
|
|
|
<script src="lib/jasmine-6.0.1/jasmine-html.js"></script>
|
|
|
|
|
<script src="lib/jasmine-6.0.1/boot0.js"></script>
|
|
|
|
|
<!-- spec files -->
|
|
|
|
|
<script src="Spec.js"></script>
|
|
|
|
|
<script src="RoleSelectSpec.js"></script>
|
|
|
|
|
<script src="TraySpec.js"></script>
|
2026-04-05 22:01:23 -04:00
|
|
|
<script src="SigSelectSpec.js"></script>
|
2026-04-16 01:57:02 -04:00
|
|
|
<script src="NatusWheelSpec.js"></script>
|
rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
<script src="NoteSpec.js"></script>
|
2026-03-29 23:39:03 -04:00
|
|
|
<!-- src files -->
|
|
|
|
|
<script src="/static/apps/dashboard/dashboard.js"></script>
|
rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
<script src="/static/apps/dashboard/note.js"></script>
|
2026-03-29 23:39:03 -04:00
|
|
|
<script src="/static/apps/epic/role-select.js"></script>
|
|
|
|
|
<script src="/static/apps/epic/tray.js"></script>
|
2026-04-05 22:01:23 -04:00
|
|
|
<script src="/static/apps/epic/sig-select.js"></script>
|
2026-04-16 01:57:02 -04:00
|
|
|
<script src="/static/apps/gameboard/d3.min.js"></script>
|
|
|
|
|
<script src="/static/apps/gameboard/natus-wheel.js"></script>
|
2026-03-29 23:39:03 -04:00
|
|
|
<!-- Jasmine env config (optional) -->
|
|
|
|
|
<script src="lib/jasmine-6.0.1/boot1.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|