]> git.wh0rd.org - tt-rss.git/commitdiff
new option: ENABLE_OFFLINE_READING (bump schema)
authorAndrew Dolgov <fox@bah.org.ru>
Tue, 10 Feb 2009 08:50:39 +0000 (11:50 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Tue, 10 Feb 2009 08:50:39 +0000 (11:50 +0300)
functions.php
sanity_check.php
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 748cc6156ec35e159421633ce4c7c7aa87c65de3..21355f7822858b238eceadf3d4197d89c0bb0215 100644 (file)
 
                print "<param key=\"sync_counters\" value=\"1\"/>";
 
-               print "<param key=\"offline_enabled\" value=\"0\"/>";
+               print "<param key=\"offline_enabled\" value=\"".
+                       (int) get_pref($link, "ENABLE_OFFLINE_READING") . "\"/>";
 
                $result = db_query($link, "SELECT COUNT(*) AS cf FROM
                        ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
index d3797aecdae2b6bea59903fe81440195f281f771..e813f3680450d68ca4f151975afa0b2afd62bb30 100644 (file)
@@ -2,7 +2,7 @@
        require_once "functions.php";
 
        define('EXPECTED_CONFIG_VERSION', 18);
-       define('SCHEMA_VERSION', 53);
+       define('SCHEMA_VERSION', 54);
 
        if (!file_exists("config.php")) {
                print "<b>Fatal Error</b>: You forgot to copy 
index 54a6dc654607c838d12c7ffea64f7f7cb6eb8480..70e306aba3695a99beeb680b9ca5f1b9ce84230f 100644 (file)
@@ -224,7 +224,7 @@ create table ttrss_tags (id integer primary key auto_increment,
 
 create table ttrss_version (schema_version int not null) TYPE=InnoDB;
 
-insert into ttrss_version values (53);
+insert into ttrss_version values (54);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -355,6 +355,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_
 
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
 
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_OFFLINE_READING', 1, 'false', 'Enable offline reading',1);
+
 create table ttrss_user_prefs (
    owner_uid integer not null,
    pref_name varchar(250),
index f42d519c2e9649f2b4349017b3fe6dedecc619b3..3c5932e5db89fbe5cfab6c1ffda1c9e54c0c1662 100644 (file)
@@ -200,7 +200,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
 
 create table ttrss_version (schema_version int not null);
 
-insert into ttrss_version values (53);
+insert into ttrss_version values (54);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -325,6 +325,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_
 
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
 
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_OFFLINE_READING', 1, 'false', 'Enable offline reading',1);
+
 create table ttrss_user_prefs (
        owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
        pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,
@@ -358,12 +360,6 @@ create table ttrss_labels2 (id serial not null primary key,
        caption varchar(250) not null
 );
 
---INSERT INTO ttrss_labels2 (owner_uid, caption) VALUES (1, 'All Articles');
---
---INSERT INTO ttrss_filters (owner_uid, feed_id, filter_type, reg_exp, enabled, 
---    action_id, action_param, filter_param) 
---    VALUES (1, NULL, 1, '.', true, 7, 'All Articles', 'before');
-
 create table ttrss_user_labels2 (
        label_id integer not null references ttrss_labels2(id) ON DELETE CASCADE,
        article_id integer not null references ttrss_entries(id) ON DELETE CASCADE