Initial commit

This commit is contained in:
Simon Brooke 2023-01-10 13:37:40 +00:00
commit 6fb60dfe50
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
18 changed files with 3308 additions and 0 deletions

37
resources/i18n/en-GB.edn Normal file
View file

@ -0,0 +1,37 @@
;;; Copyright (C) Simon Brooke, 2023
;;; This program is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU General Public License
;;; as published by the Free Software Foundation; either version 2
;;; of the License, or (at your option) any later version.
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
;; Actual fault messages to which fault codes resolve: English language version.
{:by "by"
:expected-collection "A collection was expected, but was not found."
:faults-found "The following faults were found"
:generated-on "Generated on"
:id-not-https "Publicly facing content SHOULD use HTTPS URIs"
:id-not-uri "identifiers must be publicly dereferencable URIs"
:no-context "Section 3 of the ActivityPub specification states Implementers SHOULD include the ActivityPub context in their object definitions`."
:no-faults-found "No faults were found."
:no-id-persistent "Persistent objects MUST have unique global identifiers."
:no-id-transient "The ActivityPub specification allows objects without `id` fields only if they are intentionally transient; even so it is preferred that the object should have an explicit null id."
:no-inbox "Actor objects MUST have an `inbox` property, whose value MUST be a reference to an ordered collection."
:no-items-collection "A collection expected to be simple had no items."
:no-outbox "Actor objects MUST have an `outbox` property, whose value MUST be a reference to an ordered collection."
:no-type "The ActivityPub specification states that the `type` field is optional, but it is hard to process objects with no known type."
:not-actor-type "The `type` value of the object was not a recognised actor type."
:not-valid-date-time "A date/time of format required for `xsd:dateTime` was expected but was not found."
:null-id-persistent "Persistent objects MUST have non-null identifiers."
:not-an-object "ActivityStreams object must be JSON objects."
:text-analysed "Text analysed"
:validation-report-for "Validation report for"}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,175 @@
@import url('ft-syntax-highlight.css');
body {
color: #333;
background-color: #f2f2f2;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding: 1em 5em;
}
h1,h2,h3,h4,h5,h6,th {
font-family: 'Archivo Black', Helvetica, Arial, sans-serif;
}
th,td {
border: thin solid darkgray;
padding: 0.25em 1em;
text-align: left;
vertical-align: top;
}
.info {
background-color: lightgreen;
}
.minor {
background-color: greenyellow;
}
.should {
background-color: orange;
}
.must {
background-color: orangered;
color: white;
}
.critical {
background-color: maroon;
color: white;
}
th {
background-color: silver;
}
.container {
max-width: 1000px;
}
.right {
float: right;
text-align: right;
}
.navbar {
border-radius: 0;
box-shadow: 0 0 0 0, 0 6px 12px rgba(34, 34, 34, 0.3);
}
.navbar-default {
background-color: #002b00;
border: none;
}
.navbar-default .navbar-brand {
color: #fff;
font-family: 'Archivo Black', Helvetica, Arial, sans-serif;
}
.navbar-default .navbar-brand:hover {
color: #fff;
}
.navbar-default .navbar-nav li a {
color: #fff;
}
.navbar-default .navbar-nav li a:hover {
color: #fff;
background-color: #002b00;
}
.navbar-default .navbar-nav .active a {
color: #fff;
background-color: #002b00;
}
.navbar-default .navbar-toggle:hover {
background-color: #002b00;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
#sidebar {
margin-left: 15px;
margin-top: 50px;
}
#content {
background-color: #fff;
border-radius: 3px;
box-shadow: 0 0 0 0, 0 6px 12px rgba(34, 34, 34, 0.1);
}
#content img {
max-width: 100%;
height: auto;
}
footer {
font-size: 14px;
text-align: center;
padding-top: 75px;
padding-bottom: 30px;
}
blockquote footer {
text-align: left;
padding-top: 0px;
padding-bottom: 0px;
}
#post-tags {
margin-top: 30px;
}
#prev-next {
padding: 15px 0;
}
.post-header {
margin-bottom: 20px;
}
.post-header h2 {
font-size: 32px;
}
#post-meta {
font-size: 14px;
color: rgba(0, 0, 0, 0.4)
}
#page-header {
border-bottom: 1px solid #dbdbdb;
margin-bottom: 20px;
}
#page-header h2 {
font-size: 32px;
}
pre {
overflow-x: auto;
}
pre code {
display: block;
padding: 0.5em;
overflow-wrap: normal;
white-space: pre;
}
code {
color: #002b00;
}
pre,
code,
.hljs {
background-color: #f7f9fd;
}