Conversation
Notices
-
@lain is there not a hash-routed branch of pleroma-fe anymore?
-
@moonman maybe we stopped doing it because nobody was really using it anymore, i'm actually not sure..
-
@lain OK, I'll just make a subdomain for sealion like I did with SPC. Thanks.
-
@debbie it means that the web application keeps track of what page it's on using a hash symbol on the URL, like whatever.com/#/page1
whatever.com/#/page2
-
@debbie newer browsers let single-page web applications fake regular URL structure. But if you're mixing real URL paths and a webapp, they can clash, so it's helpful to put the path after the hash because that's not a "real" path.
Example: a regular gnusocial server has paths like /main/all and /main/public. if I install pleroma-fe, it wants to write those URLs too, and there's a conflict. But if I use hash-routed, they both can work alongside of each other. I just put pleroma-fe at a url like /pleroma-fe.html and then paths can be like /pleroma-fe.html#/main/public