forked from services/mlmmj-light-web-ecg
Working project
This commit is contained in:
213
misc/smarty/templates_en/edit_list.tpl
Normal file
213
misc/smarty/templates_en/edit_list.tpl
Normal file
@@ -0,0 +1,213 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<script>
|
||||
//{literal} Do not use Smarty here
|
||||
function switch_moderators_form()
|
||||
{
|
||||
// Get a selected value
|
||||
var select = document.getElementById("list_type");
|
||||
var selected_value = select.options[select.selectedIndex].value;
|
||||
|
||||
// If selected conference list type, then disable moderators form
|
||||
if (selected_value == "2")
|
||||
{
|
||||
document.getElementById("moderators").disabled = true;
|
||||
document.getElementById("moderators_header").style.color = "#777777";
|
||||
}
|
||||
else
|
||||
{
|
||||
document.getElementById("moderators").disabled = false;
|
||||
document.getElementById("moderators_header").style.color = "#222222";
|
||||
}
|
||||
}
|
||||
|
||||
function validate_form()
|
||||
{
|
||||
var prefix = document.getElementById('prefix').value;
|
||||
var footer = document.getElementById('footer').value;
|
||||
var subscribers = document.getElementById('subscribers').value;
|
||||
var moderators = document.getElementById('moderators').value;
|
||||
|
||||
// Regex for a valid e-mail
|
||||
var re_email = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
||||
|
||||
// Transform subscribers and moderators into array
|
||||
subscribers = subscribers.split("\n");
|
||||
moderators = moderators.split("\n");
|
||||
|
||||
if (prefix.length > 128)
|
||||
{
|
||||
alert("A prefix length can not be longer than 128 characters.");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (footer.length > 1024)
|
||||
{
|
||||
alert("A footer length can not be longer than 1024 characters.");
|
||||
return false;
|
||||
}
|
||||
|
||||
for(var i in subscribers)
|
||||
{
|
||||
if ( subscribers[i] != "" && !re_email.test(subscribers[i]) )
|
||||
{
|
||||
alert('Subscriber "' + subscribers[i] + '" (line #' + (parseFloat(i)+1) + ') have incorrect email.');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
for(var i in moderators)
|
||||
{
|
||||
if ( moderators[i] != "" && !re_email.test(moderators[i]) )
|
||||
{
|
||||
alert('Moderator "' + moderators[i] + '" (line #' + (parseFloat(i)+1) + ') have incorrect email.');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
//{/literal}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="switch_moderators_form()">
|
||||
<div id="header">
|
||||
<div id="header_left">
|
||||
Mailing lists service
|
||||
</div>
|
||||
<div id="header_right">
|
||||
<a href="logout.php">Log out</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="breadcrumbs">
|
||||
<a href="index.php">{$domain}</a> / {$list_name}
|
||||
</div>
|
||||
<form method="post" action="save_list.php" id="save_list" onsubmit="return validate_form()">
|
||||
<div id="edit_page">
|
||||
<input type="hidden" name="list_name" value="{$list_name}">
|
||||
<div id="column_left">
|
||||
<div id="subscribers_header">
|
||||
Subscribers:
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_sub">
|
||||
Please, provide one email per line. Do not forget add moderators if you
|
||||
want them able to post into mailing list.
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="subscribers_body">
|
||||
<textarea name="subscribers" id="subscribers">{$subscribers}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div id="column_middle">
|
||||
<div id="column_middle_inner">
|
||||
<div id="table_div">
|
||||
<table id="table_middle">
|
||||
<tr>
|
||||
<td>
|
||||
<div id="list_type_header">
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_list_type">
|
||||
<b>Moderated list:</b> you assign subscribers and moderators. Messages will be
|
||||
moderated before publishing.<br><br>
|
||||
<b>News list:</b> everybody can subscribe without moderator confirmation by sending
|
||||
an empty email to {$list_name}+subscribe@{$domain}. Messages into mailing list can
|
||||
post only moderators.<br><br>
|
||||
<b>Conference:</b> IRC channel analogue. You assign subscribers, every subscriber
|
||||
can send messages without moderation.
|
||||
</span>
|
||||
</div>
|
||||
List type:
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<select name="list_type" id="list_type" onChange="switch_moderators_form()">
|
||||
<option value="0" {$list_type_selected[0]}>
|
||||
Moderated list
|
||||
</option>
|
||||
<option value="1" {$list_type_selected[1]}>
|
||||
News list
|
||||
</option>
|
||||
<option value="2" {$list_type_selected[2]}>
|
||||
Conference
|
||||
</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="prefix_header">
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_prefix">
|
||||
Prefix added to the subject field of each message.
|
||||
</span>
|
||||
</div>
|
||||
Prefix:
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="prefix" value="{$prefix|escape:'htmlall'}" id="prefix">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="footer_header">
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_footer">
|
||||
Footer added to the body of each message.
|
||||
</span>
|
||||
</div>
|
||||
Footer:
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<textarea name="footer" id="footer">{$footer}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div id="notmetoo">
|
||||
<div id="notmetoo_header">
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_notmetoo">
|
||||
Sender of a post will be excluded from the distribution list for
|
||||
that post so people don't receive copies of their own posts.
|
||||
</span>
|
||||
</div>
|
||||
<input type="checkbox" id="notmetoo_checkbox" name="notmetoo" value="checked" {$notmetoo_checked}>
|
||||
Do not send mails to yourself.
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="save_btn">
|
||||
<input type="submit" name="submit" value="Сохранить">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="column_right">
|
||||
<div id="moderators_header">
|
||||
Moderators:
|
||||
<div class="tooltip">
|
||||
<img src="help.svg" width=15 height=15>
|
||||
<span class="help_mod">
|
||||
In case of moderated list messages before publishing will be send to these
|
||||
emails. In case of news list only these emails can post to mailing list.
|
||||
In case of conference there are no moderators.
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="moderators_body">
|
||||
<textarea name="moderators" id="moderators">{$moderators}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user