back interdiff of round #1 and #0

appview: remove all occurrences of DidHandleMap #457

merged
opened by oppi.li targeting master from push-wpkykovtqxnx
ERROR
appview/db/reaction.go

Failed to calculate interdiff for this file.

ERROR
appview/issues/issues.go

Failed to calculate interdiff for this file.

ERROR
appview/knots/knots.go

Failed to calculate interdiff for this file.

ERROR
appview/pages/funcmap.go

Failed to calculate interdiff for this file.

ERROR
appview/pages/pages.go

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/knots/dashboard.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/issues/fragments/issueComment.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/issues/issue.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/issues/issues.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/pipelines/fragments/pipelineSymbol.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/pulls/fragments/pullHeader.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/pulls/pull.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/repo/pulls/pulls.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/spindles/dashboard.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/timeline.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/user/fragments/editPins.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/user/fragments/picHandleLink.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/user/fragments/repoCard.html

Failed to calculate interdiff for this file.

ERROR
appview/pages/templates/user/profile.html

Failed to calculate interdiff for this file.

ERROR
appview/pulls/pulls.go

Failed to calculate interdiff for this file.

ERROR
appview/spindles/spindles.go

Failed to calculate interdiff for this file.

REBASED
appview/state/profile.go

This patch was likely rebased, as context lines do not match.

ERROR
appview/state/state.go

Failed to calculate interdiff for this file.

NEW
appview/pages/templates/repo/pipelines/fragments/workflowSymbol.html
··· 19 19 {{ $color = "text-gray-600 dark:text-gray-500" }} 20 20 {{ else if eq $kind "timeout" }} 21 21 {{ $icon = "clock-alert" }} 22 - {{ $color = "text-orange-400 dark:text-orange-300" }} 22 + {{ $color = "text-orange-400 dark:text-orange-500" }} 23 23 {{ else }} 24 24 {{ $icon = "x" }} 25 25 {{ $color = "text-red-600 dark:text-red-500" }}
NEW
appview/state/router.go
··· 5 5 "strings" 6 6 7 7 "github.com/go-chi/chi/v5" 8 + chimw "github.com/go-chi/chi/v5/middleware" 8 9 "github.com/gorilla/sessions" 9 10 "tangled.sh/tangled.sh/core/appview/issues" 10 11 "tangled.sh/tangled.sh/core/appview/knots" ··· 97 98 98 99 func (s *State) StandardRouter(mw *middleware.Middleware) http.Handler { 99 100 r := chi.NewRouter() 101 + r.Mount("/debug", chimw.Profiler()) 100 102 101 103 r.Handle("/static/*", s.pages.Static()) 102 104
NEW
cmd/appview/main.go
··· 5 5 "log" 6 6 "log/slog" 7 7 "net/http" 8 + _ "net/http/pprof" 8 9 "os" 9 10 10 11 "tangled.sh/tangled.sh/core/appview/config"