this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nz-interesting: add serve_feed_debug

+8
+8
feeds/norazone_interesting.py
··· 65 65 dict(limit=limit, offset=offset) 66 66 ) 67 67 return [uri for (uri,) in cur] 68 + 69 + def serve_feed_debug(self, limit, offset, langs): 70 + query = 'select uri from posts order by create_ts desc limit :limit offset :offset' 71 + bindings = dict(limit=limit, offset=offset) 72 + return apsw.ext.format_query_table( 73 + self.db_cnx, query, bindings, 74 + string_sanitize=2, text_width=9999, use_unicode=True 75 + )