aboutsummaryrefslogtreecommitdiff
path: root/pkg/handler/git/handler.go
AgeCommit message (Collapse)Author
2024-08-04feat: Add diff viewGabriel A. Giovanini
Adds a very simple diff view for a commit
2024-07-21feat: Add anchor to line numberGabriel A. Giovanini
2024-07-07ref: Simplify path builder codeGabriel A. Giovanini
2024-07-01feat: Add pathing to the tree tabv0.0.9Gabriel A. Giovanini
2024-06-25feat: Add commit pageGabriel A. Giovanini
2024-06-23fix: Handle about file not foundGabriel A. Giovanini
2024-06-23ref: Move binary handling up to the handlerGabriel A. Giovanini
Now it is up to the handler to decide whether it wants to render a file or not, git only returns the content.
2024-06-23fix: Fix bin file not being writen to tarGabriel A. Giovanini
FileContent was not working for bin file (nor was meant to). Moving to blob reader solves the issue.
2024-06-22feat: Add archive capabilityGabriel A. Giovanini
2024-06-15feat: Add per repository about pageGabriel A. Giovanini
2024-06-15feat: Add summary pageGabriel A. Giovanini
2024-06-15fix: Add support lightweight tagsGabriel A. Giovanini
For now all tags are read as reference. That cause tags to not carry its message body by default but it will be added in the future. For now simple tags will do.
2024-06-09feat: Add global reference to ref and nameGabriel A. Giovanini
2024-06-08feat: Add error handlingGabriel A. Giovanini
2024-06-07feat: Rework some pagesGabriel A. Giovanini
2024-06-07feat: Add compressionGabriel A. Giovanini
2024-06-07feat: Add blob endpointGabriel A. Giovanini
2024-06-01ref: Remove muxGabriel A. Giovanini
2024-06-01feat: Add ref supportGabriel A. Giovanini
Now log and tree can be loaded using a given reference.
2024-06-01feat: Add refs pageGabriel A. Giovanini
UI now it is a broken state. I'll all pages working first so I can better style it later.
2024-06-01feat: Add initial logGabriel A. Giovanini
2024-05-30feat: Add git sub pageGabriel A. Giovanini
2024-05-30feat: Add initial git item pageGabriel A. Giovanini
2024-05-27feat: Wraps handler into its own packageGabriel A. Giovanini
Although this creates more complex folder structure will allow in the feature for a easier testing of those given handlers.