Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network_webui/feeds.py
blob: 2d71d796cb7908799436fb8d524dcbbe4a9dd08d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
# Copyright (C) 2012, Sebastian Silva
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from flask import g,request,url_for
from flaskext.babel import gettext as _
import logging
from werkzeug.contrib.atom import AtomFeed

import datetime
from app import app

def timedelta(mtime):
    return datetime.datetime.fromtimestamp(mtime)

@app.route('/context.atom')
def context_feed():
            
    feed = AtomFeed(_('Recent Contexts'),
                    feed_url=request.url, url=request.url_root)

    g.feed_Contexts._reset()
    g.feed_Contexts.offset = -1
    i = 0
    for context in g.feed_Contexts:
        if i==15:
            break
        feed.add(context['title'], unicode(context.get('description')),
                 content_type='text',
                 author=context['author'],
                 url=url_for('project_browser', context_guid=context['guid']),
                 updated=timedelta(context['mtime']),
                 published=timedelta(context['ctime']))
        i = i+1

    return feed.get_response()

@app.route('/feedback.atom')
def feedback_feed():
            
    feed = AtomFeed(_('Recent Feedback'),
                    feed_url=request.url, url=request.url_root)

    g.feed_Resources._reset()
    g.feed_Resources.offset = -1
    i = 0
    for resource in g.feed_Resources:
        if i==15:
            break
        feed.add(resource['title'], unicode(resource.get('content')),
                 content_type='text',
                 author=resource['author'],
                 url=url_for('solution_browser',
                    resource_guid=resource['guid']),
                 categories=[{'term':resource['type'].pop()}],
                 updated=timedelta(resource['mtime']),
                 published=timedelta(resource['ctime']))
        i = i+1

    return feed.get_response()