]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #819 from wallabag/fixSQLiteDownloadDB
authortcitworld <tcit@tcit.fr>
Wed, 10 Sep 2014 18:05:07 +0000 (20:05 +0200)
committertcitworld <tcit@tcit.fr>
Wed, 10 Sep 2014 18:05:07 +0000 (20:05 +0200)
Fix downloading SQLite database from all users

inc/poche/Routing.class.php
inc/poche/Tools.class.php
themes/baggy/config.twig
themes/default/config.twig

index 004bd45a928f56215acd0ab8837b8c57dbb6853e..0b373058029777acc582736faffddaeaa46e6cf8 100755 (executable)
@@ -124,8 +124,6 @@ class Routing
             } elseif (isset($_GET['import'])) {
                 $import = $this->wallabag->import();
                 $tplVars = array_merge($this->vars, $import);
-            } elseif (isset($_GET['download'])) {
-                Tools::downloadDb();
             } elseif (isset($_GET['empty-cache'])) {
                 Tools::emptyCache();
             } elseif (isset($_GET['export'])) {
index 63137d765542a8724991c68b3314ceba8f574d0b..55fedac8df38fad0c87b6e3e8bf4029f0a6811f9 100755 (executable)
@@ -294,21 +294,6 @@ final class Tools
         }
     }
 
-    /**
-     * Download the sqlite database
-     */
-    public static function downloadDb()
-    {
-        header('Content-Disposition: attachment; filename="poche.sqlite.gz"');
-        self::_status(200);
-
-        header('Content-Transfer-Encoding: binary');
-        header('Content-Type: application/octet-stream');
-        echo gzencode(file_get_contents(STORAGE_SQLITE));
-
-        exit;
-    }
-
     /**
      * Get the content for a given URL (by a call to FullTextFeed)
      *
index e45c3218fa7c4b6638183a39c0baa0dbcdbd736a..7bd229cbe66c911e479fb6a8bfe52fb3d20c390b 100755 (executable)
             <p><a href="?import">{% trans "You can click here to fetch content for articles with no content." %}</a></p>
             
             <h2>{% trans "Export your wallabag data" %}</h2>
-            {% if constant('STORAGE') == 'sqlite' %}
-            <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %}
             <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p>
             
             <h2>{% trans "Fancy an E-Book ?" %}</h2>
index 8f047ae6ad6162296e0d739a7717ab25eeefa966..5656fadd76ed7a96c4ed9770dcc992180cb3195a 100755 (executable)
 
             <h2>{% trans "Export your wallabag data" %}</h2>
             {% if constant('STORAGE') == 'sqlite' %}
-            <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %}
             <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p>
 
             <h2>{% trans "Cache" %}</h2>