2016-02-23 12:19:55 +09:00
|
|
|
$# This file is part of Vervis.
|
|
|
|
$#
|
2023-06-16 23:39:11 +09:00
|
|
|
$# Written in 2016, 2018, 2019, 2022, 2023
|
|
|
|
$# by fr33domlover <fr33domlover@riseup.net>.
|
2016-02-23 12:19:55 +09: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/>.
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This is the homepage for logged-in users. You should eventually see a
|
|
|
|
personal overview here. Your projects, repos, news, notifications, settings
|
|
|
|
and so on.
|
2016-02-25 12:10:30 +09:00
|
|
|
|
2022-09-27 17:04:55 +09:00
|
|
|
<h2>Actions
|
|
|
|
|
2016-02-25 12:10:30 +09:00
|
|
|
<ul>
|
2022-09-26 21:54:28 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{KeysR}>
|
|
|
|
SSH key settings
|
2019-10-19 12:17:53 +09:00
|
|
|
<li>
|
2022-09-23 14:20:39 +09:00
|
|
|
<a href=@{RepoNewR}>
|
|
|
|
Create a new repository
|
2022-08-16 22:17:26 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{DeckNewR}>
|
|
|
|
Create a new ticket tracker
|
2022-09-23 14:20:39 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{LoomNewR}>
|
|
|
|
Create a new patch tracker
|
2023-06-27 04:02:54 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{ProjectNewR}>
|
|
|
|
Create a new project
|
2022-09-23 14:20:39 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{PublishOfferMergeR}>
|
|
|
|
Open a merge request
|
2023-04-29 19:40:44 +09:00
|
|
|
$# <li>
|
|
|
|
$# <a href=@{PublishCommentR}>
|
|
|
|
$# Comment on a ticket or merge request
|
2022-09-25 06:15:40 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{PublishMergeR}>
|
|
|
|
Merge a merge request
|
2023-06-16 23:39:11 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{PublishInviteR}>
|
|
|
|
Invite someone to a resource
|
2023-06-17 06:39:02 +09:00
|
|
|
<li>
|
|
|
|
<a href=@{PublishRemoveR}>
|
|
|
|
Remove someone from a resource
|
2022-09-27 17:04:55 +09:00
|
|
|
|
|
|
|
<h2>Your teams
|
|
|
|
|
|
|
|
<p>You aren't a member of any teams at the moment.
|
|
|
|
|
|
|
|
<h2>Your repos
|
|
|
|
|
|
|
|
<ul>
|
2023-06-18 03:35:00 +09:00
|
|
|
$forall (Entity repoID _, Entity _ actor, Entity _ (Collab role)) <- repos
|
2022-09-27 17:04:55 +09:00
|
|
|
<li>
|
2023-06-18 03:35:00 +09:00
|
|
|
[
|
|
|
|
#{show role}
|
|
|
|
]
|
2022-09-27 17:04:55 +09:00
|
|
|
<a href=@{RepoR $ hashRepo repoID}>
|
|
|
|
^#{keyHashidText $ hashRepo repoID} #{actorName actor}
|
|
|
|
|
|
|
|
<h2>Your ticket trackers
|
|
|
|
|
|
|
|
<ul>
|
2023-06-18 03:35:00 +09:00
|
|
|
$forall (Entity deckID _, Entity _ actor, Entity _ (Collab role)) <- decks
|
2022-09-27 17:04:55 +09:00
|
|
|
<li>
|
2023-06-18 03:35:00 +09:00
|
|
|
[
|
|
|
|
#{show role}
|
|
|
|
]
|
2022-09-27 17:04:55 +09:00
|
|
|
<a href=@{DeckR $ hashDeck deckID}>
|
|
|
|
=#{keyHashidText $ hashDeck deckID} #{actorName actor}
|
|
|
|
|
|
|
|
<h2>Your patch trackers
|
|
|
|
|
|
|
|
<ul>
|
2023-06-18 03:35:00 +09:00
|
|
|
$forall (Entity loomID _, Entity _ actor, Entity _ (Collab role)) <- looms
|
2022-09-27 17:04:55 +09:00
|
|
|
<li>
|
2023-06-18 03:35:00 +09:00
|
|
|
[
|
|
|
|
#{show role}
|
|
|
|
]
|
2022-09-27 17:04:55 +09:00
|
|
|
<a href=@{LoomR $ hashLoom loomID}>
|
|
|
|
+#{keyHashidText $ hashLoom loomID} #{actorName actor}
|
2023-06-27 04:02:54 +09:00
|
|
|
|
|
|
|
<h2>Your projects
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
$forall (Entity projectID _, Entity _ actor, Entity _ (Collab role)) <- projects
|
|
|
|
<li>
|
|
|
|
[
|
|
|
|
#{show role}
|
|
|
|
]
|
|
|
|
<a href=@{ProjectR $ hashProject projectID}>
|
2023-06-27 05:40:43 +09:00
|
|
|
\$#{keyHashidText $ hashProject projectID} #{actorName actor}
|