Compare commits
2 Commits
b09e1b4613
...
dfdfb289b2
Author | SHA1 | Date |
---|---|---|
|
dfdfb289b2 | |
|
14130941c7 |
2
mbox2web
2
mbox2web
|
@ -1104,7 +1104,7 @@ class Thread:
|
||||||
for r in m.in_reply_to:
|
for r in m.in_reply_to:
|
||||||
p = self.messages[r]
|
p = self.messages[r]
|
||||||
edges.append((p.x, p.y, m.x, m.y))
|
edges.append((p.x, p.y, m.x, m.y))
|
||||||
lines.append((m.date, m.mfrom, m.subject, m.encmsgid))
|
lines.append((m.date, m.mfrom or "(no sender)", m.subject or "(no subject)", m.encmsgid))
|
||||||
y += 1
|
y += 1
|
||||||
s = "<table class='thread'>"
|
s = "<table class='thread'>"
|
||||||
s += "<tr>"
|
s += "<tr>"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>
|
<title>
|
||||||
{{list}}: {{month.year}}-{{month.month}}
|
{{list}}: {{month.year}}-{{month.month}}
|
||||||
</title>
|
</title>
|
||||||
<link rel="stylesheet" href="../../../style/luga.css">
|
<link rel="stylesheet" href="../../../../style/luga.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1> Mailinglist {{list}} {{month.year}}-{{month.month}}</h1>
|
<h1> Mailinglist {{list}} {{month.year}}-{{month.month}}</h1>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>
|
<title>
|
||||||
{{list}}: {{subject}}
|
{{list}}: {{subject}}
|
||||||
</title>
|
</title>
|
||||||
<link rel="stylesheet" href="../../style/luga.css">
|
<link rel="stylesheet" href="../../../style/luga.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<img id="logo" src="/style/logo3.svg">
|
<img id="logo" src="/style/logo3.svg">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>
|
<title>
|
||||||
{{list}}: Overview
|
{{list}}: Overview
|
||||||
</title>
|
</title>
|
||||||
<link rel="stylesheet" href="../../style/luga.css">
|
<link rel="stylesheet" href="../../../style/luga.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>
|
<title>
|
||||||
{{list}}: {{subject}}
|
{{list}}: {{subject}}
|
||||||
</title>
|
</title>
|
||||||
<link rel="stylesheet" href="../../style/luga.css">
|
<link rel="stylesheet" href="../../../style/luga.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>{{subject}}</h1>
|
<h1>{{subject}}</h1>
|
||||||
|
|
Loading…
Reference in New Issue