aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-05-01 12:50:45 +0200
committercedricbonhomme <devnull@localhost>2012-05-01 12:50:45 +0200
commit97eed5025543b22f2c95ba58dbf701c527534051 (patch)
tree39aba00a1ad88458c375a92a52f3413f77c52f15 /source
parentBugfix in the epub export. (diff)
downloadnewspipe-97eed5025543b22f2c95ba58dbf701c527534051.tar.gz
newspipe-97eed5025543b22f2c95ba58dbf701c527534051.tar.bz2
newspipe-97eed5025543b22f2c95ba58dbf701c527534051.zip
One line between each function.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index fe36e32f..577b3451 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -206,7 +206,6 @@ class Root:
index.exposed = True
-
def create_right_menu(self):
"""
Create the right menu.
@@ -237,7 +236,6 @@ class Root:
self.mongo.nb_unread_articles(feed["feed_id"]), not_read_end, self.mongo.nb_articles(feed["feed_id"]))
return html + "</div>"
-
def management(self):
"""
Management page.
@@ -297,7 +295,6 @@ class Root:
management.exposed = True
-
def statistics(self, word_size=6):
"""
More advanced statistics.
@@ -326,7 +323,6 @@ class Root:
statistics.exposed = True
-
def search(self, query=None):
"""
Simply search for the string 'query'
@@ -403,7 +399,6 @@ class Root:
search.exposed = True
-
def fetch(self):
"""
Fetch all feeds.
@@ -414,7 +409,6 @@ class Root:
fetch.exposed = True
-
def article(self, param):
"""
Display the article in parameter in a new Web page.
@@ -560,7 +554,6 @@ class Root:
article.exposed = True
-
def feed(self, feed_id, word_size=6):
"""
This page gives summary informations about a feed (number of articles,
@@ -691,7 +684,6 @@ class Root:
feed.exposed = True
-
def articles(self, feed_id):
"""
This page displays all articles of a feed.
@@ -745,7 +737,6 @@ class Root:
articles.exposed = True
-
def unread(self, feed_id=""):
"""
This page displays all unread articles of a feed.
@@ -825,7 +816,6 @@ class Root:
unread.exposed = True
-
def history(self, query="all", m=""):
"""
This page enables to browse articles chronologically.
@@ -915,7 +905,6 @@ class Root:
history.exposed = True
-
def plain_text(self, target):
"""
Display an article in plain text (without HTML tags).
@@ -941,7 +930,6 @@ class Root:
plain_text.exposed = True
-
def error_page(self, message):
"""
Display a message (bad feed id, bad article id, etc.)
@@ -955,7 +943,6 @@ class Root:
error_page.exposed = True
-
def mark_as_read(self, target=""):
"""
Mark one (or more) article(s) as read by setting the value of the field
@@ -979,7 +966,6 @@ class Root:
mark_as_read.exposed = True
-
def notifications(self):
"""
List all active e-mail notifications.
@@ -1002,7 +988,6 @@ class Root:
notifications.exposed = True
-
def mail_notification(self, param):
"""
Enable or disable to notifications of news for a feed.
@@ -1016,7 +1001,6 @@ class Root:
mail_notification.exposed = True
-
def like(self, param):
"""
Mark or unmark an article as favorites.
@@ -1031,7 +1015,6 @@ class Root:
like.exposed = True
-
def favorites(self):
"""
List of favorites articles
@@ -1068,7 +1051,6 @@ class Root:
favorites.exposed = True
-
def add_feed(self, url):
"""
Add a new feed with the URL of a page.
@@ -1095,7 +1077,6 @@ class Root:
add_feed.exposed = True
-
def remove_feed(self, feed_id):
"""
Remove a feed from the file feed.lst and from the MongoDB database.
@@ -1117,7 +1098,6 @@ class Root:
remove_feed.exposed = True
-
def change_feed_url(self, new_feed_url, old_feed_url):
"""
Enables to change the URL of a feed already present in the database.
@@ -1177,7 +1157,6 @@ class Root:
delete_article.exposed = True
-
def drop_base(self):
"""
Delete all articles.
@@ -1187,7 +1166,6 @@ class Root:
drop_base.exposed = True
-
def export(self, export_method):
"""
Export articles currently loaded from the MongoDB database with
@@ -1201,7 +1179,6 @@ class Root:
export.exposed = True
-
def epub(self, param):
"""
Export an article to EPUB.
bgstack15