Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f94925b
attribution pipeline: Phase 0 (TDD) — API skeleton + red tests
shikokuchuo May 11, 2026
40f2f41
attribution plan: mark Phase 0 checklist items complete
shikokuchuo May 12, 2026
16fcf64
attribution pipeline: Phase 1 — canonical types live
shikokuchuo May 12, 2026
7d77f2c
attribution pipeline: Phase 2 — generate transform live
shikokuchuo May 12, 2026
fe83bb7
attribution pipeline: Phase 3 — providers + CLI flag live
shikokuchuo May 12, 2026
750bc44
attribution pipeline: Phase 4 — render transform + HTML data-attr emi…
shikokuchuo May 12, 2026
662b06c
attribution pipeline: Phase 5a — q2-debug JSON wire shape + TS palett…
shikokuchuo May 12, 2026
f55702d
attribution pipeline: Phase 5b — TS producer + ReactPreview wire-up
shikokuchuo May 12, 2026
1e7c378
attribution pipeline: Phase 6 — producer-invariant tests + user docs
shikokuchuo May 12, 2026
f68fd57
attribution pipeline: Phase 7 — verification + deviation log
shikokuchuo May 12, 2026
ff41885
attribution pipeline: Phase 4b — HTML prose coalescing
shikokuchuo May 12, 2026
91cfe94
fix(hub-client): usePreference cross-instance reactivity + declare at…
shikokuchuo May 12, 2026
b61104b
changelog: usePreference cross-instance reactivity fix
shikokuchuo May 12, 2026
b4fea95
attribution pipeline: regenerate data-flow SVG (v2) to match shipped …
shikokuchuo May 12, 2026
7efb84d
fix(quarto-core): default new JsonConfig attribution fields at q2-pre…
shikokuchuo May 12, 2026
10dd3cf
feat(hub-client): port Phase 5c Authorship renderer colouring to fram…
shikokuchuo May 12, 2026
8cf443c
feat(hub-client): attributionEnabled preference + Authorship toggle +…
shikokuchuo May 12, 2026
df20065
changelog: Authorship toggle + renderer port for 10dd3cfc + 8cf443c1
shikokuchuo May 12, 2026
7ceb42c
fix(hub-client): serialize iframe UPDATE_AST through shared load promise
shikokuchuo May 12, 2026
d992d04
changelog: iframe message-dispatch race fix for 7ceb42c0
shikokuchuo May 12, 2026
f4f31b1
feat(quarto-core): wire attribution data through q2-preview pipeline
shikokuchuo May 13, 2026
5194cc5
feat(hub-client): call render_page_in_project_with_attribution from q…
shikokuchuo May 13, 2026
3827348
feat(hub-client): port Phase 5c Authorship renderer colouring to q2-p…
shikokuchuo May 13, 2026
46be15e
changelog: q2-preview Authorship wiring for 5194cc59 + 38273485
shikokuchuo May 13, 2026
b5baec4
refactor(quarto-core): centralize attribution writer-config translation
shikokuchuo May 13, 2026
b6b03dd
refactor(hub-client): consolidate attribution wrap + hover wiring
shikokuchuo May 13, 2026
a322e93
docs(hub-client): changelog for b6b03dde
shikokuchuo May 13, 2026
2ed023b
refactor(quarto): derive ValueEnum on AttributionMode
shikokuchuo May 13, 2026
1243fdf
refactor(quarto-core): rename from_config_value to identity_map_from_…
shikokuchuo May 13, 2026
2686203
refactor(hub-client): move actor palette helpers into utils/
shikokuchuo May 13, 2026
925ac57
docs(hub-client): changelog for 26862035; escape tilde in b6b03dde entry
shikokuchuo May 13, 2026
a728f99
refactor(quarto-core): tighten AttributionDataBuilder API
shikokuchuo May 13, 2026
f15e0bd
attribution pipeline: docs for static viewer overlay
shikokuchuo May 14, 2026
28f523b
attribution pipeline: tighten --attribution=git e2e regression test
shikokuchuo May 14, 2026
00bc014
attribution pipeline: unit test for formatRelativeTime
shikokuchuo May 14, 2026
4462555
attribution pipeline: unit test for buildAttributionPayload
shikokuchuo May 14, 2026
8b8349c
feat(attribution): auto-inject default viewer CSS/JS for HTML renders
shikokuchuo May 14, 2026
006ee4b
docs(hub-client): changelog for 8b8349c8
shikokuchuo May 14, 2026
f7e8c5c
fix(attribution): use committer-time, not author-time, for viewer fre…
shikokuchuo May 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

320 changes: 320 additions & 0 deletions claude-notes/plans/2026-05-06-attribution-pipeline-flow-v2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,340 changes: 2,340 additions & 0 deletions claude-notes/plans/2026-05-06-attribution-pipeline.md

Large diffs are not rendered by default.

440 changes: 440 additions & 0 deletions claude-notes/plans/2026-05-13-q2-preview-attribution.md

Large diffs are not rendered by default.

524 changes: 524 additions & 0 deletions claude-notes/plans/2026-05-14-attribution-auto-viewer.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions crates/pampa/src/json_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ pub fn apply_json_filter(
let mut json_buf = Vec::new();
let json_config = writers::json::JsonConfig {
include_inline_locations: true,
..writers::json::JsonConfig::default()
};
writers::json::write_with_config(pandoc, context, &mut json_buf, &json_config).map_err(
|diags| {
Expand Down
1 change: 1 addition & 0 deletions crates/pampa/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ fn main() {
.json_source_location
.as_ref()
.is_some_and(|s| s == "full"),
..writers::json::JsonConfig::default()
};
writers::json::write_with_config(&pandoc, &context, &mut buf, &json_config)
}
Expand Down
1 change: 1 addition & 0 deletions crates/pampa/src/wasm_entry_points/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ fn pandoc_to_json(
let mut buf = Vec::new();
let config = JsonConfig {
include_inline_locations: include_resolved_locations,
..JsonConfig::default()
};
match crate::writers::json::write_with_config(doc, context, &mut buf, &config) {
Ok(_) => {
Expand Down
Loading