From c40e2ece163e357cf83df9d4fa08eec24663eebf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20K=C3=B6gl?= Date: Sun, 29 Dec 2013 14:20:35 +0100 Subject: [PATCH] user docs are now hosted on readthedocs.org --- mygpo/web/templates/online-help.html | 51 ------------------------------------ mygpo/web/urls.py | 5 ++-- 2 files changed, 3 insertions(+), 53 deletions(-) delete mode 100644 mygpo/web/templates/online-help.html diff --git a/mygpo/web/templates/online-help.html b/mygpo/web/templates/online-help.html deleted file mode 100644 index c5f28277..00000000 --- a/mygpo/web/templates/online-help.html +++ /dev/null @@ -1,51 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% load menu %} -{% block mainmenu %}{{ "/online-help"|main_menu }}{% endblock %} -{% block sectionmenu %}{{ "/online-help"|section_menu }}{% endblock %} - -{% block title %}{% trans "Help" %}{% endblock %} - -{% block header %} -

{% trans "Help" %}

-{% endblock %} - - -{% block content %} - -

{% trans "gpodder.net is a web service to manage your podcast subscriptions via the web. You can synchronize your devices, view status information and discover new interesting podcasts online." %}

- -

{% trans "Supported Clients" %}

-

{% blocktrans %}A list of supported clients is available in the gPodder wiki.{% endblocktrans %}

- -

{% blocktrans %}To configure gPodder to connect to gpodder.net, open the my.gpodder.org / gpodder.net configuration dialog from the Subscriptions menu. Enter username and password that you've used during the registration on the webservice. The device ID is automatically generated from the hostname and will be used to identify this specific device in the webservice. Next enable the synchronisation of your subscription list. For the start, upload your subscription list to the webservice. Subsequent changes will be transmitted automatically.{% endblocktrans %}

- -

{% trans "Devices" %}

-

{% blocktrans %}Each device connected to the webservice will be identified by its Device ID which should therefore be unique (at least for your user account). Do not try to synchronize devices by using the same Device ID.{% endblocktrans %}

- - {% url "devices" as devices-url %} -

{% blocktrans %}A list of your devices can be found on the devices page.{% endblocktrans %}

- -

{% trans "Synchronizing Devices" %}

-

{% blocktrans %}If you have at least two devices connected to the webservice, you can synchronize some of them. Open the device page for one of them, click synchronize and select the device to synchronize with. After synchronizing, the subscriptions of the devices will be merged. Adding a subscription at one device will automatically add it to the others. Same for deletions.{% endblocktrans %}

- - {% url "devices" as devices-url %} -

{% blocktrans %}The device list groups devices that are synchronized with each other.{% endblocktrans %}

- -

{% trans "Episode States" %}

-

{% blocktrans %}Episode states (such as played, downloaded, etc) are synchronized across all devices.{% endblocktrans %}

- -

{% trans "Privacy Settings" %}

- - {% url "toplist" as toplist-url %} - {% url "suggestions" as suggestions-url %} - {% url "toplist" as toplist-url %} - {% url "privacy" as privacy-url %} -

{% blocktrans %}By default we include information about your subscriptions in our toplist and podcast suggestions. We will never associate your username and/or email address with your subscriptions on public pages. You can even opt-out from our anonymized statistics at the privacy page. If you mark some podcasts as private, they will also not show up in your sharable subscription list.{% endblocktrans %}

- -

{% trans "Sharing your Subscriptions" %}

- {% url "share" as share-url %} -

{% blocktrans %}If you want to let others know about your which podcasts you are listening to, go to your sharing page. You can either share your private URL with your friends or make it public and share your subscriptions with the whole world.{% endblocktrans %}

- -{% endblock %} diff --git a/mygpo/web/urls.py b/mygpo/web/urls.py index 3cb3a3e7..f0c3976a 100644 --- a/mygpo/web/urls.py +++ b/mygpo/web/urls.py @@ -1,6 +1,6 @@ from django.conf.urls import * from django.contrib.auth.views import logout -from django.views.generic.base import TemplateView +from django.views.generic.base import TemplateView, RedirectView from django_couchdb_utils.registration.views import activate, register from django_couchdb_utils.registration.forms import RegistrationFormUniqueEmail @@ -18,7 +18,8 @@ urlpatterns = patterns('mygpo.web.views', url(r'^tags/', 'mytags', name='tags'), url(r'^online-help', - TemplateView.as_view(template_name='online-help.html'), + RedirectView.as_view( + url='http://gpoddernet.readthedocs.org/en/latest/user/index.html'), name='help'), url(r'^developer/', -- 2.11.4.GIT