feat: HTML default page #801
No reviewers
Labels
No labels
Bug
Cherry-picking
Database
Dependencies
Documentation
Enhancement
Good first issue
Help wanted
Inherited
Matrix/Administration
Matrix/Appservices
Matrix/Auth
Matrix/Client
Matrix/Core
Matrix/Federation
Matrix/MSC
Matrix/Media
Meta
Meta/Packaging
Priority
Blocking
Priority
High
Priority
Low
Security
Status
Confirmed
Status
Duplicate
Status
Invalid
Status
Needs Investigation
Wont fix
old/ci/cd
old/rust
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: continuwuation/continuwuity#801
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "jade/html-default-page"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
TODO:
0bc8bfa923
toe1655edd83
WIP: feat: HTML default pageto feat: HTML default pageNot sure how to pass the git remote from nix, so going to ignore that, but I've got this into a state I'm happy with for now.
@ -144,3 +144,3 @@
<&DeviceId>::from(registration.registration.id.as_str())
} else {
panic!("No device_id provided and no appservice registration found, this should be unreachable");
panic!(
Is this related to adding a HTML page? feels like it should be in its own PR
This is just the result of auto formatting, I thought I got this earlier but apparently not 🤷
@ -0,0 +7,4 @@
<p>To get started, you can:</p>
<ul>
<li>Read the <a href="https://continuwuity.org/introduction">documentation</a></li>
<li>Join the <a href="https://continuwuity.org/community">community</a></li>
This should probably be a link to the room rather than guidelines
Possibly. The community page has a link to three of the rooms, at least.
And a lot of words that people won't read to find the room links :^)
@ -0,0 +9,4 @@
<li>Read the <a href="https://continuwuity.org/introduction">documentation</a></li>
<li>Join the <a href="https://continuwuity.org/community">community</a></li>
<li>Log in with a <a href="https://matrix.org/ecosystem/clients/">client</a></li>
<li>Ensure <a href="https://federationtester.matrix.org/">federation</a> works</li>
would it be possible to append the servername to this to automate the check? i.e.
https://federationtester.matrix.org/#{{ config.server_name }}
Yeah, although it would require some code flow restructuring. Two ways to do this, either we have the router call into the template with the info from the services (faster compile times), or we have the templates depend on the services (probably a more understandable structure)
Compile times should be no real impact as long as we don't depend on API, admin, router or main.
You only compile once, but you read plenty more (metaphorically speaking). although if it adds a stupid amount of time to compile under any circumstance dw about it, it's just a convenience thing
843d9cf2ae
toe3ae024ed3