]> git.wh0rd.org - tt-rss.git/commitdiff
shamelessly pimp tt-rss devblog in default install
authorAndrew Dolgov <fox@madoka.spb.ru>
Tue, 30 Oct 2007 08:36:14 +0000 (09:36 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Tue, 30 Oct 2007 08:36:14 +0000 (09:36 +0100)
functions.php
schema/ttrss_schema_pgsql.sql

index 45c17ec253d7bf89f0143f8c60d46a5424c79cfc..791a4191e5d6ea63689f9e2a4bd41d48b2db10cb 100644 (file)
 
                db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description) 
                        values ('$uid','last_read is null and unread = false', 'Updated articles')");
-               
+
+               db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
+                       values ('$uid', 'Tiny Tiny RSS: Dev. Blog',
+                       'http://bah.org.ru/archives/category/tt-rss/feed')");
+
                db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
                        values ('$uid', 'Tiny Tiny RSS: New Releases',
                        'http://tt-rss.spb.ru/releases.rss')");
index c75e210f16f043dfe7d3cc33365207a3d3091bbb..419b94f4f5b4626b0efe7a9672c564af7598ef3d 100644 (file)
@@ -70,6 +70,9 @@ create table ttrss_feeds (id serial not null primary key,
 
 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
 
+insert into ttrss_feeds (owner_uid, title, feed_url) values
+       (1, 'Tiny Tiny RSS: Dev. Blog', 'http://bah.org.ru/archives/category/tt-rss/feed');
+
 insert into ttrss_feeds (owner_uid, title, feed_url) values
        (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.spb.ru/releases.rss');