--- a/src/cm/templates/site/notifications.html Mon Dec 14 10:05:21 2009 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,92 +0,0 @@
-{% extends "site/layout/base_workspace.html" %}
-{% load com %}
-{% load i18n %}
-{% load local_perms %}
-
-{% block title %}
-{% blocktrans %}Notifications{% endblocktrans %}
-{% endblock %}
-
-{% block main %}
-{% get_local_perm request can_manage_workspace as can_manage_workspace %}
-<script type="text/javascript">
-<!--
-tb_conf['current_tab'] = 'notifications';
--->
-</script>
-
-<div id="notifications" class="tab-meta">
-
-<form id="notifications" enctype="multipart/form-data" action="." method="post">
-
-<h2>{% blocktrans %}Feeds{% endblocktrans %}</h2>
-
-<h3>{% blocktrans %}Public feed{% endblocktrans %} (<a title="{% blocktrans %}Help{% endblocktrans %}" target="_blank" href="{% url help %}#public_private_feed">?</a>)</h3>
-
-<div>
-<a href="{% url public-feed %}" title="{% blocktrans %}Public feed for workspace{% endblocktrans %}">
- <img style="vertical-align:middle;" src="{{ MEDIA_URL }}/img/xml.gif" /> {{SITE_URL}}{% url public-feed %}
-</a>
-</div>
-{% blocktrans %}This is the public feed for the workspace.{% endblocktrans %}
-
-{% if can_manage_workspace %}
-<h3>{% blocktrans %}Private feed{% endblocktrans %} (<a title="{% blocktrans %}Help{% endblocktrans %}" target="_blank" href="{% url help %}#public_private_feed">?</a>)</h3>
-
-{% if CONF.private_feed_key %}
-<div>
-<a href="{% url private-feed CONF.private_feed_key %}" title="{% blocktrans %}Private feed for workspace{% endblocktrans %}">
- <img style="vertical-align:middle;" src="{{ MEDIA_URL }}/img/xml.gif" /> {{SITE_URL}}{% url private-feed CONF.private_feed_key %}
-</a>
-</div>
-{% blocktrans %}This is the private feed for the workspace. Don't share this address with others unless you want them to see all activities on the workspace.{% endblocktrans %}
-<br />
-<input name="reset" type="submit" id="reset" value="{% blocktrans %}Reset private feed url{% endblocktrans %}"/>
-
-{% else %}
-<div>
-<input name="activate" type="submit" id="activate" value="{% blocktrans %}Activate private feed{% endblocktrans %}"/>
-</div>
-{% blocktrans %}The private feed for this workspace is not yet activated.{% endblocktrans %}
-{% endif %}
-{% endif %}
-
-<h2>{% blocktrans %}Email notifications{% endblocktrans %}</h2>
- <div>
- <input type="checkbox" id="workspace_notify_check" class="check" {% if workspace_notify_check %}checked="checked"{% endif %}/>
- {% blocktrans %}Subscribe to workspace notifications{% endblocktrans %}
- </div>
- <div id="own_notify_check_container">
- <input type="checkbox" id="own_notify_check" class="check" {% if own_notify_check %}checked="checked"{% endif %}/>
- {% blocktrans %}Subscribe to all replies notifications in discussions where you have participated{% endblocktrans %}
- </div>
- <script type="text/javascript">
- <!--
-
- $(function() {
- adapt_own_check_visibility = function() {
- if ($("#workspace_notify_check").attr('checked'))
- $("#own_notify_check_container").hide() ;
- else
- $("#own_notify_check_container").show() ;
- } ;
- $(".check").click(function(){
- checked = $(this).attr('checked');
- id = $(this).attr('id') ;
- post_data = {'notif_id': id} ;
- post_data[id] = checked ;
- $.post('.', post_data, function(data){});
-
- adapt_own_check_visibility();
- });
- adapt_own_check_visibility() ;
- }) ;
- -->
- </script>
-
-</form>
-</div>
-
-
-{% endblock %}
-