nandi/frqpublic Fork 0
0e7cd322e9fe4d04d215501ceb97171001c09cc2
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

A web version, from the same core 23846db · on 0e7cd322e9fe4d04d215501ceb97171001c09cc2 · nandi · 8h ago
index.html · 45 lines · 1.6 KBHTML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
  <!--
    Committed rather than generated. `just flutter-web` used to run
    `flutter create --platforms=web` when this directory was missing, which
    was fine while the page was Flutter's default one — but the OAuth client
    needs a script of its own beside the bundle, and a generated runner is no
    place to keep one.

    `$FLUTTER_BASE_HREF` is the token `flutter build web` rewrites; leave it.
  -->
  <base href="$FLUTTER_BASE_HREF">

  <meta charset="UTF-8">
  <meta content="IE=Edge" http-equiv="X-UA-Compatible">
  <meta name="description" content="freeq client">

  <meta name="mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
  <meta name="apple-mobile-web-app-title" content="frq">
  <link rel="apple-touch-icon" href="icons/Icon-192.png">

  <link rel="icon" type="image/png" href="favicon.png"/>

  <title>frq</title>
  <link rel="manifest" href="manifest.json">

  <!--
    The core, and the half of the web build that owns the I/O. Both before
    the bundle and neither `async`: Flutter reaches `globalThis.frq` as soon
    as it starts, and a core that might not have parsed yet is a race nobody
    would enjoy debugging.

    This is where the ClojureDart build loaded `frq_dpop.js`, a WebCrypto
    helper for an OAuth client written in Dart. The broker does that work
    now, and the client asking for it is Nim.
  -->
  <script src="frq_core.js"></script>
  <script src="frq_host.js"></script>
</head>
<body>
  <script src="flutter_bootstrap.js" async></script>
</body>
</html>