377 lines
14 KiB
Text
377 lines
14 KiB
Text
<% #href %>
|
|
<% param.path %>
|
|
|
|
<% #include %>
|
|
document.writeln('<script type="text/javascript" src="<% param.href %>"><\/script>');
|
|
<% // This does not work because the asynchronous loading causes nasty side-effects
|
|
"var script = document.createElement('script');
|
|
script.type = 'text/javascript';
|
|
script.src = '<% param.href %>';
|
|
document.head.appendChild(script);"
|
|
%>
|
|
|
|
<% #listItem %>
|
|
<tr>
|
|
<td class="small" title="<% site.modified %>" style="text-align: right; vertical-align: baseline; white-space: nowrap;">
|
|
<% site.modified text %>
|
|
</td>
|
|
<td style="vertical-align: baseline; padding-left: 10px;">
|
|
<% site.title | site.link %>
|
|
</td>
|
|
</tr>
|
|
|
|
<% #opensearchdescription %>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
<ShortName><% site.title %></ShortName>
|
|
<Description>Search the site <% site.href %></Description>
|
|
<Tags>antville search</Tags>
|
|
<Image height="16" width="16" type="image/vnd.microsoft.icon"><% image /ant-icon.png url %></Image>
|
|
<Url type="text/html" template="<% site.href search %>?q={searchTerms}" />
|
|
<Query role="example" searchTerms="cat" />
|
|
</OpenSearchDescription>
|
|
|
|
<% #menuExt %>
|
|
<script type="text/javascript" defer="defer">
|
|
<!--
|
|
var win = external.menuArguments;
|
|
var url = "<% site.url %>stories/create?content_text=";
|
|
var link = escape('<a href="' + win.location.href + '">' +
|
|
win.document.title + "</a>: ");
|
|
var text = escape(win.document.selection.createRange().text);
|
|
win.location.href = url + link + text;
|
|
//-->
|
|
</script>
|
|
|
|
<% #menuExtRegistry %>
|
|
REGEDIT4
|
|
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Post to <% site.title %>]
|
|
@="<% site.url %>menuext"
|
|
"contexts"=hex:31
|
|
|
|
<% #referrers %>
|
|
<p class="storyTitle"><% response.title %></p>
|
|
<br />
|
|
<form action="<% response.action %>" method="get">
|
|
<input type="text" name="filter" value="<% request.filter encoding="form" %>"
|
|
size="30" />
|
|
<button type="submit" name="submit" value="1"><% gettext Filter %></button>
|
|
<button onclick="document.location='<% site.href referrers %>'; return false;">
|
|
<% gettext Reset %></button>
|
|
<div class="small">
|
|
<input type="checkbox" id="includeSpam" name="includeSpam" value="checked"
|
|
<% request.includeSpam prefix='checked="' suffix='"' encoding="form" %> />
|
|
<label for="includeSpam"><% gettext 'Display the referrers unfiltered' %></label>
|
|
</div>
|
|
<br />
|
|
<table border="0" cellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td align="right" class="small"><% gettext Hits %></td>
|
|
<td width="10" nowrap="nowrap" rowspan="999"> </td>
|
|
<td></td>
|
|
<td class="small"><% gettext Referrer %></td>
|
|
</tr>
|
|
<script type="text/javascript">
|
|
var referrers = [];
|
|
<% site.referrers %>
|
|
var query = new Antville.Query();
|
|
var spamFilter = new Antville.Filter([<% site.spamfilter %>]);
|
|
var searchFilter = new Antville.Filter(query.filter);
|
|
var searchEngineFilters = [
|
|
new Antville.Filter("http:\/\/.*google.*\?", "q"),
|
|
new Antville.Filter("http:\/\/.*bing.*\?", "q"),
|
|
new Antville.Filter("http:\/\/.*altavista.*\?", "q"),
|
|
new Antville.Filter("http:\/\/.*search\.yahoo.*\?", "p")
|
|
];
|
|
for (var i in referrers) {
|
|
var ref = referrers[i];
|
|
var text = ref.text;
|
|
var isSpam = spamFilter.test(ref.url);
|
|
if (isSpam && !query.includeSpam)
|
|
continue;
|
|
if (query.filter && !searchFilter.test(ref.url))
|
|
continue;
|
|
var done = false;
|
|
for (var e in searchEngineFilters) {
|
|
var filter = searchEngineFilters[e];
|
|
if (!done && filter.test(ref.url)) {
|
|
text = ref.compose(filter.key, "<em>Search request:</em> ");
|
|
done = true;
|
|
}
|
|
}
|
|
document.writeln('<tr>');
|
|
document.writeln('<td align="right" valign="top">', ref.count, '</td>');
|
|
document.write('<td valign="top">');
|
|
if ("<% membership.role %>" === "Owner") {
|
|
document.write('<input type="checkbox" name="permanent" value="',
|
|
ref.url, '" />');
|
|
}
|
|
document.writeln('</td>');
|
|
document.writeln('<td><a href="', ref.url, '"', (isSpam ?
|
|
' style="<% value "Small font color" prefix="color: " %>"' : ''),
|
|
'>', text, '</a></td>');
|
|
document.writeln('</tr>');
|
|
}
|
|
</script>
|
|
<noscript>
|
|
<tr>
|
|
<td colspan="3">
|
|
<% site.skin $Site#noscript %>
|
|
</td>
|
|
</tr>
|
|
</noscript>
|
|
</table>
|
|
</form>
|
|
|
|
<% #referrer %>
|
|
referrers.push(new Antville.Referrer("<% param.referrer %>",
|
|
"<% param.text %>", <% param.requests %>));
|
|
|
|
<% #noscript %>
|
|
<% gettext "To make spamming referrers and backlinks useless, they are displayed using client-side JavaScript. To see them, your browser needs to be set to permit the execution of JavaScript." %>
|
|
|
|
<% #deleted %>
|
|
<% gettext "This site is going to be deleted completely and irreversibly after {0}."
|
|
<% site.deleted | format long %> %>
|
|
|
|
<% #export %>
|
|
<p class="storyTitle"><% gettext "Export Site Data" %></p>
|
|
<div class="ample">
|
|
<p><% if <% param.status %> is null then <% if <% file.self %> is null then '' else <% gettext "Download the file {0} or klick “Start” to create a new one."
|
|
<% file.skin File#main %> '<small>'
|
|
<% file.created | format short %> '</small>' %> %> else <% param.status %> %></p>
|
|
<form action="" method="post">
|
|
<button type="submit" name="submit" value="<% if <% param.status %> is null then start else stop %>">
|
|
<% if <% param.status %> is null then <% gettext Start %> else <% gettext Stop %> %>
|
|
</button>
|
|
<a href="" class="cancel"><% gettext Cancel %></a>
|
|
</form>
|
|
</div>
|
|
|
|
<% #import %>
|
|
<p class="storyTitle"><% gettext 'Import Site Data' %></p>
|
|
<div class="ample">
|
|
<p><% if <% file.self %> is null then '' else <% gettext "The site is scheduled for importing the file {0}. The imported site data will be available within 24 hours."
|
|
<% file.skin File#main %> '</a>' '<small>'
|
|
<% file.created | format short %> '</small>' %> %></p>
|
|
<form method="post" enctype="multipart/form-data">
|
|
|
|
<% if <% file.self %> is null then <% site.upload file prefix=<p> suffix=</p> %> %>
|
|
<button type="submit" name="submit" value="<% if <% file.self %> is null then start else stop %>">
|
|
<% if <% file.self %> is null then <% gettext Start %> else <% gettext Stop %> %>
|
|
</button>
|
|
<a href="" class="cancel"><% gettext Cancel %></a>
|
|
</form>
|
|
</div>
|
|
|
|
<% #edit %>
|
|
<h1><% response.title %></h1>
|
|
<form class='uk-form uk-form-stacked' id="prefs" method="post" action="<% response.action %>">
|
|
<fieldset>
|
|
<legend><% gettext General %></legend>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='mode'>
|
|
<% gettext Mode %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.select mode %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='title'>
|
|
<% gettext Title %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.input title class='uk-width-1-1' %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='tagline'>
|
|
<% gettext Description %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.input tagline class='uk-width-1-1' %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='pageSize'>
|
|
<% gettext Paging %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.input pageSize class='uk-form-width-mini' maxlength=2 %>
|
|
<% gettext "{0} per page" <% gettext "stories" %> %>
|
|
<% // site.select pageMode %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='commentMode'>
|
|
<% gettext Comments %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<label>
|
|
<% site.checkbox commentMode %>
|
|
enabled
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label'>
|
|
<% gettext Archive %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<label>
|
|
<% site.checkbox archiveMode %>
|
|
<% gettext enabled %>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='locale'>
|
|
<% gettext Language %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.select locale %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='timeZone'>
|
|
<% gettext 'Time Zone' %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.select timeZone %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='notificationMode'>
|
|
<% gettext Notifications %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.select notificationMode %>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<fieldset class='uk-margin-large-top'>
|
|
<legend><% gettext Advanced %></legend>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='callbackUrl'>
|
|
<% gettext 'Callback URL' %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.input callbackUrl class='uk-width-1-1' %>
|
|
<label>
|
|
<% site.checkbox callbackMode %>
|
|
<% gettext enabled %>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label'>
|
|
<% gettext 'Disk Space' %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.diskspace %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label'>
|
|
<% gettext Bookmarklet %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<a class='uk-button' data-uk-tooltip='{pos: "right"}' href="javascript: var siteUrl = '<% site.href %>'; var selection = (window.getSelection) ? window.getSelection() : document.selection.createRange(); selection = selection.text || selection; selection = selection + ''; var url='<% site.static %>../www/formica.html?s=' + encodeURIComponent(siteUrl) + '&l=' + encodeURIComponent(location.href) + '&r=' + encodeURIComponent(document.referrer) + '&w=400&h=400&c=' + encodeURIComponent(selection || document.title); window.open(url, 'formica', 'width=630, height=350'); void 0;" title="<% gettext 'Drag to Bookmarks Bar' %>"><% gettext "Post to {0}" <% site.title %> %></a>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<a id="spamfilter" name="spamfilter"></a>
|
|
<fieldset class='uk-margin-large-top'>
|
|
<legend><% gettext "Referrer Spam Filter" %></legend>
|
|
<div class='uk-form-row'>
|
|
<div class='uk-form-controls'>
|
|
<% site.textarea spamfilter rows=5 class='uk-width-1-1' %>
|
|
<p class="uk-form-help-block">
|
|
<% gettext "Enter one filter {0}pattern{1} per line to be applied on every URL in the referrer and backlink lists." '<a href="http://en.wikipedia.org/wiki/Regular_expression">' </a> %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
<a name='admin' id='admin'></a>
|
|
<fieldset class='uk-margin-large-top'>
|
|
<legend><% gettext Admin %></legend>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='status'>
|
|
<% gettext Status %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.select status %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='status'>
|
|
<% gettext Information %>
|
|
</label>
|
|
<div><% ngettext "{0} Story" "{0} Stories" <% count <% site.self stories %> %> %></div>
|
|
<div><% ngettext "{0} Comment" "{0} Comments" <% count <% site.self comments %> %> %></div>
|
|
<div><% ngettext "{0} Image" "{0} Images" <% count <% site.self images %> %> %></div>
|
|
<div><% ngettext "{0} File" "{0} Files" <% count <% site.self files %> %> %></div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<label class='uk-form-label' for='notes'>
|
|
<% gettext Notes %>
|
|
</label>
|
|
<div class='uk-form-controls'>
|
|
<% site.textarea notes class='uk-width-1-1' rows=5 %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<a style='color: #fff;' href='<% this.href delete %>' class='uk-button uk-button-danger'>
|
|
<i class='uk-icon-trash'></i>
|
|
Delete this site
|
|
</a>
|
|
</div>
|
|
</fieldset>
|
|
<div class='uk-margin-large-top'>
|
|
<button class='uk-button uk-button-primary' type="submit" id="submit" name="save" value="1">
|
|
<% gettext Save %>
|
|
</button>
|
|
<a href="" class="uk-button uk-button-link cancel"><% gettext Cancel %></a>
|
|
</div>
|
|
</form>
|
|
<script>
|
|
$(function() {
|
|
$('input#callbackMode').on('click', function(event) {
|
|
$('input#callbackUrl').prop('disabled', !this.checked);
|
|
});
|
|
$('input#callbackUrl').prop('disabled', !$('input#callbackMode').prop('checked'));
|
|
});
|
|
</script>
|
|
|
|
<% #delete %>
|
|
<div class='uk-alert uk-alert-danger'>
|
|
<% gettext 'You are about to delete the whole site which currently contains {0}, {1}, {2}, {3} and {4}.'
|
|
<% ngettext '{0} story' '{0} stories' <% count <% site.self stories %> %> %>
|
|
<% ngettext '{0} comment' '{0} comments' <% count <% site.self comments %> %> %>
|
|
<% ngettext '{0} image' '{0} images' <% count <% site.self images %> %> %>
|
|
<% ngettext '{0} file' '{0} files' <% count <% site.self files %> %> %>
|
|
<% ngettext '{0} poll' '{0} polls' <% count <% site.self polls %> %> %> %>
|
|
<strong><% gettext 'All of this will be deleted irreversibly.' %></strong>
|
|
<% gettext 'Are you sure you want to proceed?' %>
|
|
</div>
|
|
|
|
<% #notify_block %>
|
|
<% gettext 'Hello {0}.' <% membership.name %> %>
|
|
|
|
<% gettext 'The site {0} at {1} will be blocked in {2} because it is being
|
|
restricted for too long.' <% site.title %> <%site.href %>
|
|
<% ngettext '{0} day' '{0} days' <% root.phaseOutGracePeriod %> %> %>
|
|
|
|
<% gettext "Best regards." %>
|
|
<% gettext "The Management" %>
|
|
|
|
<% #notify_delete %>
|
|
<% gettext 'Hello {0}.' <% membership.name %> %>
|
|
|
|
<% gettext 'The site {0} at {1} will be deleted in {2} because it has been
|
|
considered as abandoned.' <% site.title %> <% site.href %>
|
|
<% ngettext '{0} day' '{0} days' <% root.phaseOutGracePeriod %> %> %>
|
|
|
|
<% gettext "Best regards." %>
|
|
<% gettext "The Management" %>
|