Mercurial Hosting > chat
changeset 51:38c209714df9
rename to Luan Chat
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 03 Mar 2025 12:13:40 -0700 |
parents | 979a9ee73ea4 |
children | c3fabb21b6c4 |
files | src/about.html.luan src/account.html.luan src/lib/Shared.luan src/login.html.luan |
diffstat | 4 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/about.html.luan Sat Mar 01 11:04:33 2025 -0700 +++ b/src/about.html.luan Mon Mar 03 12:13:40 2025 -0700 @@ -18,7 +18,7 @@ <body> <% header() %> <div content> - <h1>About Web Chat</h1> + <h1>About Luan Chat</h1> <p>This is a free web-based instant messaging service written for websites wanting to provide support through chat. The other existing solutions are overcomplicated enterprise services that are often expensive. All that is really needed is a simple general chat. Each user gets a URL and other people can chat with the user through that URL.</p>
--- a/src/account.html.luan Sat Mar 01 11:04:33 2025 -0700 +++ b/src/account.html.luan Mon Mar 03 12:13:40 2025 -0700 @@ -138,7 +138,7 @@ <% header() %> <div content> <h1>Your Account</h1> - <p><a href="about.html">About Web Chat</a></p> + <p><a href="about.html">About Luan Chat</a></p> <p>Your URL: <%= base_url() %>/?with=<%=user.email%></p> <p>Your username: <span username></span> <a href="javascript:editUsername()">Edit</a></p> <p><span notify></span> <a href="javascript:editNotify()">Edit</a></p>
--- a/src/lib/Shared.luan Sat Mar 01 11:04:33 2025 -0700 +++ b/src/lib/Shared.luan Mon Mar 03 12:13:40 2025 -0700 @@ -32,11 +32,11 @@ local title local domain = Http.domain if domain == "chat.luan.software" then - title = "Web Chat" + title = "Luan Chat" elseif domain == "test.chat.luan.software" then - title = "Web Chat test" + title = "Luan Chat test" elseif domain == nil then - title = "Web Chat local" + title = "Luan Chat local" else error(domain) end @@ -58,7 +58,7 @@ %> <div header> <span> - <a href="/">Web Chat</a> + <a href="/">Luan Chat</a> <% for _, crumb in ipairs(crumbs or {}) do %> / <%=crumb%> <% end %>
--- a/src/login.html.luan Sat Mar 01 11:04:33 2025 -0700 +++ b/src/login.html.luan Mon Mar 03 12:13:40 2025 -0700 @@ -46,7 +46,7 @@ </p> </form> <p><a href="manual_login.html">Password Login</a></p> - <p><a href="about.html">About Web Chat</a></p> + <p><a href="about.html">About Luan Chat</a></p> </div> </body> </html>