summaryrefslogtreecommitdiff
path: root/res/templates
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-10-18 15:15:07 +0100
committerRichard van der Hoff <richard@matrix.org>2018-10-18 15:15:07 +0100
commit0585db0697d2858e57782571aa0b91fbcf0d2bbe (patch)
tree74d2b9f766770f0bce22a33e6554e5e5e32e576d /res/templates
parenta4603f93e83afc572f1e0854e3d816597af46cdf (diff)
New upstream version 0.33.7
Diffstat (limited to 'res/templates')
-rw-r--r--res/templates/mail-Vector.css7
-rw-r--r--res/templates/mail.css156
-rw-r--r--res/templates/notif.html45
-rw-r--r--res/templates/notif.txt16
-rw-r--r--res/templates/notif_mail.html55
-rw-r--r--res/templates/notif_mail.txt10
-rw-r--r--res/templates/room.html33
-rw-r--r--res/templates/room.txt9
8 files changed, 0 insertions, 331 deletions
diff --git a/res/templates/mail-Vector.css b/res/templates/mail-Vector.css
deleted file mode 100644
index 6a3e36ed..00000000
--- a/res/templates/mail-Vector.css
+++ /dev/null
@@ -1,7 +0,0 @@
-.header {
- border-bottom: 4px solid #e4f7ed ! important;
-}
-
-.notif_link a, .footer a {
- color: #76CFA6 ! important;
-}
diff --git a/res/templates/mail.css b/res/templates/mail.css
deleted file mode 100644
index 5ab3e1b0..00000000
--- a/res/templates/mail.css
+++ /dev/null
@@ -1,156 +0,0 @@
-body {
- margin: 0px;
-}
-
-pre, code {
- word-break: break-word;
- white-space: pre-wrap;
-}
-
-#page {
- font-family: 'Open Sans', Helvetica, Arial, Sans-Serif;
- font-color: #454545;
- font-size: 12pt;
- width: 100%;
- padding: 20px;
-}
-
-#inner {
- width: 640px;
-}
-
-.header {
- width: 100%;
- height: 87px;
- color: #454545;
- border-bottom: 4px solid #e5e5e5;
-}
-
-.logo {
- text-align: right;
- margin-left: 20px;
-}
-
-.salutation {
- padding-top: 10px;
- font-weight: bold;
-}
-
-.summarytext {
-}
-
-.room {
- width: 100%;
- color: #454545;
- border-bottom: 1px solid #e5e5e5;
-}
-
-.room_header td {
- padding-top: 38px;
- padding-bottom: 10px;
- border-bottom: 1px solid #e5e5e5;
-}
-
-.room_name {
- vertical-align: middle;
- font-size: 18px;
- font-weight: bold;
-}
-
-.room_header h2 {
- margin-top: 0px;
- margin-left: 75px;
- font-size: 20px;
-}
-
-.room_avatar {
- width: 56px;
- line-height: 0px;
- text-align: center;
- vertical-align: middle;
-}
-
-.room_avatar img {
- width: 48px;
- height: 48px;
- object-fit: cover;
- border-radius: 24px;
-}
-
-.notif {
- border-bottom: 1px solid #e5e5e5;
- margin-top: 16px;
- padding-bottom: 16px;
-}
-
-.historical_message .sender_avatar {
- opacity: 0.3;
-}
-
-/* spell out opacity and historical_message class names for Outlook aka Word */
-.historical_message .sender_name {
- color: #e3e3e3;
-}
-
-.historical_message .message_time {
- color: #e3e3e3;
-}
-
-.historical_message .message_body {
- color: #c7c7c7;
-}
-
-.historical_message td,
-.message td {
- padding-top: 10px;
-}
-
-.sender_avatar {
- width: 56px;
- text-align: center;
- vertical-align: top;
-}
-
-.sender_avatar img {
- margin-top: -2px;
- width: 32px;
- height: 32px;
- border-radius: 16px;
-}
-
-.sender_name {
- display: inline;
- font-size: 13px;
- color: #a2a2a2;
-}
-
-.message_time {
- text-align: right;
- width: 100px;
- font-size: 11px;
- color: #a2a2a2;
-}
-
-.message_body {
-}
-
-.notif_link td {
- padding-top: 10px;
- padding-bottom: 10px;
- font-weight: bold;
-}
-
-.notif_link a, .footer a {
- color: #454545;
- text-decoration: none;
-}
-
-.debug {
- font-size: 10px;
- color: #888;
-}
-
-.footer {
- margin-top: 20px;
- text-align: center;
-} \ No newline at end of file
diff --git a/res/templates/notif.html b/res/templates/notif.html
deleted file mode 100644
index 88b921ca..00000000
--- a/res/templates/notif.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{% for message in notif.messages %}
- <tr class="{{ "historical_message" if message.is_historical else "message" }}">
- <td class="sender_avatar">
- {% if loop.index0 == 0 or notif.messages[loop.index0 - 1].sender_name != notif.messages[loop.index0].sender_name %}
- {% if message.sender_avatar_url %}
- <img alt="" class="sender_avatar" src="{{ message.sender_avatar_url|mxc_to_http(32,32) }}" />
- {% else %}
- {% if message.sender_hash % 3 == 0 %}
- <img class="sender_avatar" src="https://vector.im/beta/img/76cfa6.png" />
- {% elif message.sender_hash % 3 == 1 %}
- <img class="sender_avatar" src="https://vector.im/beta/img/50e2c2.png" />
- {% else %}
- <img class="sender_avatar" src="https://vector.im/beta/img/f4c371.png" />
- {% endif %}
- {% endif %}
- {% endif %}
- </td>
- <td class="message_contents">
- {% if loop.index0 == 0 or notif.messages[loop.index0 - 1].sender_name != notif.messages[loop.index0].sender_name %}
- <div class="sender_name">{% if message.msgtype == "m.emote" %}*{% endif %} {{ message.sender_name }}</div>
- {% endif %}
- <div class="message_body">
- {% if message.msgtype == "m.text" %}
- {{ message.body_text_html }}
- {% elif message.msgtype == "m.emote" %}
- {{ message.body_text_html }}
- {% elif message.msgtype == "m.notice" %}
- {{ message.body_text_html }}
- {% elif message.msgtype == "m.image" %}
- <img src="{{ message.image_url|mxc_to_http(640, 480, scale) }}" />
- {% elif message.msgtype == "m.file" %}
- <span class="filename">{{ message.body_text_plain }}</span>
- {% endif %}
- </div>
- </td>
- <td class="message_time">{{ message.ts|format_ts("%H:%M") }}</td>
- </tr>
-{% endfor %}
-<tr class="notif_link">
- <td></td>
- <td>
- <a href="{{ notif.link }}">View {{ room.title }}</a>
- </td>
- <td></td>
-</tr>
diff --git a/res/templates/notif.txt b/res/templates/notif.txt
deleted file mode 100644
index a37bee98..00000000
--- a/res/templates/notif.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-{% for message in notif.messages %}
-{% if message.msgtype == "m.emote" %}* {% endif %}{{ message.sender_name }} ({{ message.ts|format_ts("%H:%M") }})
-{% if message.msgtype == "m.text" %}
-{{ message.body_text_plain }}
-{% elif message.msgtype == "m.emote" %}
-{{ message.body_text_plain }}
-{% elif message.msgtype == "m.notice" %}
-{{ message.body_text_plain }}
-{% elif message.msgtype == "m.image" %}
-{{ message.body_text_plain }}
-{% elif message.msgtype == "m.file" %}
-{{ message.body_text_plain }}
-{% endif %}
-{% endfor %}
-
-View {{ room.title }} at {{ notif.link }}
diff --git a/res/templates/notif_mail.html b/res/templates/notif_mail.html
deleted file mode 100644
index fcdb3109..00000000
--- a/res/templates/notif_mail.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <style type="text/css">
- {% include 'mail.css' without context %}
- {% include "mail-%s.css" % app_name ignore missing without context %}
- </style>
- </head>
- <body>
- <table id="page">
- <tr>
- <td> </td>
- <td id="inner">
- <table class="header">
- <tr>
- <td>
- <div class="salutation">Hi {{ user_display_name }},</div>
- <div class="summarytext">{{ summary_text }}</div>
- </td>
- <td class="logo">
- {% if app_name == "Riot" %}
- <img src="http://matrix.org/img/riot-logo-email.png" width="83" height="83" alt="[Riot]"/>
- {% elif app_name == "Vector" %}
- <img src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="[Vector]"/>
- {% else %}
- <img src="http://matrix.org/img/matrix-120x51.png" width="120" height="51" alt="[matrix]"/>
- {% endif %}
- </td>
- </tr>
- </table>
- {% for room in rooms %}
- {% include 'room.html' with context %}
- {% endfor %}
- <div class="footer">
- <a href="{{ unsubscribe_link }}">Unsubscribe</a>
- <br/>
- <br/>
- <div class="debug">
- Sending email at {{ reason.now|format_ts("%c") }} due to activity in room {{ reason.room_name }} because
- an event was received at {{ reason.received_at|format_ts("%c") }}
- which is more than {{ "%.1f"|format(reason.delay_before_mail_ms / (60*1000)) }} ({{ reason.delay_before_mail_ms }}) mins ago,
- {% if reason.last_sent_ts %}
- and the last time we sent a mail for this room was {{ reason.last_sent_ts|format_ts("%c") }},
- which is more than {{ "%.1f"|format(reason.throttle_ms / (60*1000)) }} (current throttle_ms) mins ago.
- {% else %}
- and we don't have a last time we sent a mail for this room.
- {% endif %}
- </div>
- </div>
- </td>
- <td> </td>
- </tr>
- </table>
- </body>
-</html>
diff --git a/res/templates/notif_mail.txt b/res/templates/notif_mail.txt
deleted file mode 100644
index 24843042..00000000
--- a/res/templates/notif_mail.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hi {{ user_display_name }},
-
-{{ summary_text }}
-
-{% for room in rooms %}
-{% include 'room.txt' with context %}
-{% endfor %}
-
-You can disable these notifications at {{ unsubscribe_link }}
-
diff --git a/res/templates/room.html b/res/templates/room.html
deleted file mode 100644
index 723c222d..00000000
--- a/res/templates/room.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<table class="room">
- <tr class="room_header">
- <td class="room_avatar">
- {% if room.avatar_url %}
- <img alt="" src="{{ room.avatar_url|mxc_to_http(48,48) }}" />
- {% else %}
- {% if room.hash % 3 == 0 %}
- <img alt="" src="https://vector.im/beta/img/76cfa6.png" />
- {% elif room.hash % 3 == 1 %}
- <img alt="" src="https://vector.im/beta/img/50e2c2.png" />
- {% else %}
- <img alt="" src="https://vector.im/beta/img/f4c371.png" />
- {% endif %}
- {% endif %}
- </td>
- <td class="room_name" colspan="2">
- {{ room.title }}
- </td>
- </tr>
- {% if room.invite %}
- <tr>
- <td></td>
- <td>
- <a href="{{ room.link }}">Join the conversation.</a>
- </td>
- <td></td>
- </tr>
- {% else %}
- {% for notif in room.notifs %}
- {% include 'notif.html' with context %}
- {% endfor %}
- {% endif %}
-</table>
diff --git a/res/templates/room.txt b/res/templates/room.txt
deleted file mode 100644
index 84648c71..00000000
--- a/res/templates/room.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-{{ room.title }}
-
-{% if room.invite %}
- You've been invited, join at {{ room.link }}
-{% else %}
- {% for notif in room.notifs %}
- {% include 'notif.txt' with context %}
- {% endfor %}
-{% endif %}