2016-02-17 17:43:23 +01:00
|
|
|
$# This file is part of Vervis.
|
|
|
|
$#
|
2024-04-27 22:17:22 +02:00
|
|
|
$# Written in 2016, 2019, 2022, 2024 by fr33domlover <fr33domlover@riseup.net>.
|
2016-02-17 17:43:23 +01:00
|
|
|
$#
|
|
|
|
$# ♡ Copying is an act of love. Please copy, reuse and share.
|
|
|
|
$#
|
|
|
|
$# The author(s) have dedicated all copyright and related and neighboring
|
|
|
|
$# rights to this software to the public domain worldwide. This software is
|
|
|
|
$# distributed without any warranty.
|
|
|
|
$#
|
|
|
|
$# You should have received a copy of the CC0 Public Domain Dedication along
|
|
|
|
$# with this software. If not, see
|
|
|
|
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
|
2022-06-26 10:32:53 +02:00
|
|
|
<header>
|
2024-08-02 17:31:06 +02:00
|
|
|
$maybe (Entity _ person, hash, verified, unread, can) <- mperson
|
2022-06-26 10:32:53 +02:00
|
|
|
<div>
|
|
|
|
$if verified
|
2019-10-19 11:48:15 +02:00
|
|
|
<span>
|
2024-08-06 11:33:02 +02:00
|
|
|
[You are logged in as #
|
2024-08-02 17:31:06 +02:00
|
|
|
$if can
|
|
|
|
<span>👑
|
2022-06-26 10:32:53 +02:00
|
|
|
<span .username>#{personLogin person}</span>]
|
|
|
|
$if unread > 0
|
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{NotificationsR}>
|
2022-06-26 10:32:53 +02:00
|
|
|
🔔#{unread}
|
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{PersonInboxR hash}>
|
2022-06-26 10:32:53 +02:00
|
|
|
[📥 Inbox]
|
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{PersonOutboxR hash}>
|
2022-06-26 10:32:53 +02:00
|
|
|
[📤 Outbox]
|
2024-04-27 22:17:22 +02:00
|
|
|
<span>
|
|
|
|
<a href=@{PersonErrboxR hash}>
|
|
|
|
[💥 Errbox]
|
2022-06-26 10:32:53 +02:00
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{PersonFollowersR hash}>
|
2022-06-26 10:32:53 +02:00
|
|
|
[🐤 Followers]
|
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{PersonFollowingR hash}>
|
2022-06-26 10:32:53 +02:00
|
|
|
[🐔 Following]
|
|
|
|
<span>
|
|
|
|
<a href=@{BrowseR}>
|
|
|
|
[📚 Browse projects]
|
2024-04-28 20:08:04 +02:00
|
|
|
<span>
|
|
|
|
<a href=@{RemoteActorsR}>
|
|
|
|
[🌁 Browse remote actors]
|
2024-07-06 11:53:31 +02:00
|
|
|
<span>
|
|
|
|
<a href=@{InboxDebugR}>
|
|
|
|
[💥 Inbox Debug Reports]
|
2022-06-26 10:32:53 +02:00
|
|
|
<span>
|
2022-09-23 07:20:39 +02:00
|
|
|
<a href=@{HomeR}>
|
2022-06-26 10:32:53 +02:00
|
|
|
[📣 Publish an activity]
|
|
|
|
<span>
|
|
|
|
<a href=@{AuthR LogoutR}>
|
|
|
|
[🚪 Log out]
|
|
|
|
$else
|
|
|
|
<span>
|
|
|
|
You are logged in as #{personLogin person} (unverified). If you haven't
|
|
|
|
received a verification link by email, you can ask to
|
|
|
|
<a href=@{ResendVerifyEmailR}>resend
|
|
|
|
it. Or <a href=@{AuthR LogoutR}>Log out.
|
|
|
|
$if unread > 0
|
|
|
|
<span>
|
Switch to new actor layout
This is such a huge patch, it's probably impossible to tell what it does by
looking at the code. One thing is clear: It changes *everything* :P so here's
an overview:
- There are now 5 types of actors, each having its own top-level route
- So projects, repos, etc. are no longer "under" sharers
- Actor routes are now based on their KeyHashid, there are no "idents" anymore,
i.e. URLs look random and don't contain user or repo names
- No sharers anymore; people and groups are distinct entities not sharing a
common namespace or anything like that
- Project has been renamed to Deck and it simply means a ticket tracker; repos
are no longer "under" projects
- In addition to Person, Group, Repo and Deck, there's a new actor type Loom,
which is a patch tracker; i.e. Repo actors don't manage MRs anymore
- All C2S and S2S is temporarily disabled, because huge changes to the whole
code are required and I'll do them gradually in the next patches
- Since form-based actions are implemented using C2S, they're disabled as well,
so Vervis is now essentially read-only
- Some views have been temporarily removed, e.g. repo history and commit view
- A huge set of DB migrations has been added to adapt the DB to these changes;
I haven't tested them yet on a read DB so there may be errors there; I'll fix
them in the next patches if I find any (probably going to test on the main
instance where Vervis itself is hosted...)
- Some modules got tech upgrades, e.g. LocalActor became a higher-kinded type
and a similar pattern is probably relevant for several other types
- There's an 'Actor' entity in the DB schema now, and all 5 actor types use it
for common things like inbox and outbox
- Although inbox and outbox are used only by Actor, so essentially could be
removed, I haven't removed them; that's because I wonder if at some point
users can have a tree of inboxes much like in email; I don't have an excuse
for Outbox, but anyway, leaving them as is for now
- Workflows, roles and collaborators are partially removed/unused until I
figure out a sane federated way to provide these features
- Since repo routes don't contain a "sharer" anymore, SSH URIs are now simpler,
they already look like user@host/repo regardless of who "controls" that repo
2022-08-15 15:57:42 +02:00
|
|
|
<a href=@{NotificationsR}>
|
2022-06-26 10:32:53 +02:00
|
|
|
🔔#{unread}
|
|
|
|
$nothing
|
|
|
|
<div>
|
|
|
|
You are not logged in.
|
|
|
|
<a href=@{AuthR LoginR}>Log in.
|
|
|
|
Or
|
|
|
|
<a href=@{AuthR newAccountR}>Sign up.
|
2024-07-06 11:53:31 +02:00
|
|
|
<span> -|-
|
|
|
|
<span>
|
|
|
|
<a href=@{InboxDebugR}>
|
|
|
|
[💥 Inbox Debug Reports]
|
2022-06-26 10:32:53 +02:00
|
|
|
|
|
|
|
$if federationDisabled
|
|
|
|
<p>
|
2019-10-19 05:17:53 +02:00
|
|
|
<span>
|
2022-06-26 10:32:53 +02:00
|
|
|
NOTE: Federation is disabled on this instance!
|
|
|
|
$if null federatedServers
|
2019-10-19 05:17:53 +02:00
|
|
|
<span>
|
2022-06-26 10:32:53 +02:00
|
|
|
You can test federation between other instances.
|
2019-01-21 23:51:19 +01:00
|
|
|
$else
|
2019-10-19 11:48:15 +02:00
|
|
|
<span>
|
2022-06-26 10:32:53 +02:00
|
|
|
You can test federation between the following instances:
|
|
|
|
<ul>
|
|
|
|
$forall h <- federatedServers
|
|
|
|
<li>
|
2022-09-27 06:56:02 +02:00
|
|
|
<a href="https://#{h}">
|
2022-06-26 10:32:53 +02:00
|
|
|
#{h}
|
2019-05-06 00:00:26 +02:00
|
|
|
|
2022-06-26 10:32:53 +02:00
|
|
|
<.instance>
|
|
|
|
Vervis @ #{renderAuthority instanceHost}
|
2019-03-04 10:06:23 +01:00
|
|
|
|
2022-06-26 10:32:53 +02:00
|
|
|
^{breadcrumbsW}
|
2016-05-02 16:16:51 +02:00
|
|
|
|
2022-09-28 16:11:38 +02:00
|
|
|
<div #messages>
|
|
|
|
$forall (_status, msg) <- msgs
|
|
|
|
<div .message>#{msg}
|
2016-05-02 16:16:51 +02:00
|
|
|
|
2022-06-26 10:32:53 +02:00
|
|
|
<main role="main">
|
|
|
|
^{widget}
|
2016-05-18 10:35:13 +02:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
^{revisionW}
|