alpha
Login
or
Join now
oyster.cafe
/
tangled-core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Monorepo for Tangled
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
tangled-core
/
appview
/
at
fb6671862c0c01c7ac10cd3525bb6dc195fd0a47
32 folders
1 file
oppiliappan
appview/indexer: log docCount on startup
7mo ago
65ac2a14
cache
appview: support git clones for repo.git urls instead of rewriting, simply accept .git suffixes in the ResolveRepo middleware. Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
commitverify
appview/models: move db.PublicKey into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
config
Revert "Revert "*/config: add PLC URL config option"" This reverts commit 55b06460d331a29b940dd06c7518d9fd0a911cd2.
8 months ago
db
appview: add `user_mentioned` notification preference option Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
dns
appview/{dns,signup}: make signup flow transactional
8 months ago
email
remove unused func
1 year ago
filetree
appview: diff: organize changed-files into file-tree introduces the filetree package. eventually we will have a sticky side-panel style layout for any page displaying diffs (probably makes most sense when we have split diffs), and this file-tree will move there.
1 year ago
indexer
appview/indexer: log docCount on startup Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
issues
appview/issues: fix ordering of issues Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
knots
appview/knots, appview/spindles: strip protocol and @ symbol from user inputs Signed-off-by: Evan Jarrett <evan@evanjarrett.com>
7 months ago
labels
appview: remove redundant middleware argument in routers Labels and Pipeline routers do not use middleware, this has been removed from their respective routers. Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
middleware
appview: support git clones for repo.git urls instead of rewriting, simply accept .git suffixes in the ResolveRepo middleware. Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
models
appview/models: introduce blob view model encapsulates all the structure necessary to translate the knot's blob response into a renderable component on the appview. this makes it extensible for other types in the future too (CSV, Jupyter etc.) Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
notifications
appview/pagination: context based pagination introduce helper methods: `IntoContext` and `FromContext` these will help using pagination obj form context easier and make it less error-prune by using private empty struct as a key instead of raw string Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
notify
appview/notify/db: set hard-limit to @-mention notification Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
oauth
appview/oauth: support local PDS override `Client.Transport` to support PDS served in localhost Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
ogcard
appview/ogcard: introduce highlevel helpers to draw icons and assets - DrawLucideIcon & DrawDollySilhouette to simplify the svg drawing logic - DrawDollySilhouette now depends on the html template itself, instead of a bespoke svg this changes lets us remove dolly.svg from the fragments. Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
pages
appview/pages: migrate string templates to use funcmap renderers Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
pagination
appview: add basic issue indexer - Heavily inspired by gitea - add `GetAllIssues` which only receives a paginator and gathers all issues ignoring `repoAt` field Signed-off-by: Seongmin Lee <boltlessengineer@proton.me>
11 months ago
pipelines
appview/pages: show live updating counters for steps spindles can now give us detailed logs for start and end of steps. the appview can ingest these logs to indicate live durations for steps. it is implemented like so: - the logs handler keeps track of start and end times for each step - whenever we recieve a start or end time, we update the html to add a `data-start` or `data-end` attribute - using some javascript, we print a live updating timer for each step: * if only `data-start` is present: then use Now - Start and update each second * if both `data-start` and `data-end` are present, then use End - Start Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
pulls
appview/notify: notify users mentioned on PR comments Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
randomart
show branches in a dropdown
1 year ago
repo
go.mod: tidy Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
reporesolver
appview: add website and topics fields to repo Removed description edit UI / endpoints and put unified base settings form in repository settings page. This form is restricted to `repo:owner` permission same as before. The internal model of topics is an array but they are stored/edited as single string where each topics are joined with whitespaces. Having a dedicated topics table with M:M relationship to the repo seems a bit overkill considering we will have external search indexer anyway. Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
serververify
all: rename go module to tangled.org/core Sets up a special-case handler for serving tangled.org/core go module, plus some misc. .sh -> .org renames. Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.sh>
9 months ago
settings
appview: add `user_mentioned` notification preference option Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
signup
appview/{dns,signup}: make signup flow transactional
8 months ago
spindles
appview/knots, appview/spindles: strip protocol and @ symbol from user inputs Signed-off-by: Evan Jarrett <evan@evanjarrett.com>
7 months ago
state
appview/router: fix url rewriter the appview rewrites urls of the form: host.com/did-plc-foo/repo => host.com/did:plc:foo/repo host.com/@handle.com/repo => host.com/handle.com/repo however, the rewriter did not preserve query parameters or fragments: host.com/@handle.com/repo?foo=bar => host.com/handle.com/repo? this resulted in url rewrites being broken for git clones, which usees the "service" query parameter: ../repo/info/refs?service=git-upload-pack => ../repo/info/refs? the new url rewriter simply takes the existing url and replaces the path component, thus preserving all other bits of the url. Signed-off-by: oppiliappan <me@oppi.li>
7 months ago
strings
appview: switch to indigo oauth library Signed-off-by: oppiliappan <me@oppi.li>
8 months ago
validator
appview: add website and topics fields to repo Removed description edit UI / endpoints and put unified base settings form in repository settings page. This form is restricted to `repo:owner` permission same as before. The internal model of topics is an array but they are stored/edited as single string where each topics are joined with whitespaces. Having a dedicated topics table with M:M relationship to the repo seems a bit overkill considering we will have external search indexer anyway. Signed-off-by: Seongmin Lee <git@boltless.me>
7 months ago
xrpcclient
appview: switch to indigo oauth library Signed-off-by: oppiliappan <me@oppi.li>
8 months ago
ingester.go
appview: add personal pronouns to profile Signed-off-by: Shalabh Agarwal <me@serendipty01.dev> fixes: https://tangled.org/@tangled.org/core/issues/224
8 months ago