]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - index.php
changes for 1026 for PDO exceptions
[github/wallabag/wallabag.git] / index.php
old mode 100644 (file)
new mode 100755 (executable)
index d0d008e..adfef71
--- a/index.php
+++ b/index.php
@@ -1,26 +1,22 @@
 <?php
 /**
- * poche, a read it later open source system
+ * wallabag, self hostable application allowing you to not miss any content anymore
  *
- * @category   poche
- * @author     Nicolas LÅ“uillet <support@inthepoche.com>
+ * @category   wallabag
+ * @author     Nicolas LÅ“uillet <nicolas@loeuillet.org>
  * @copyright  2013
- * @license    http://www.wtfpl.net/ see COPYING file
+ * @license    http://opensource.org/licenses/MIT see COPYING file
  */
 
-include dirname(__FILE__).'/inc/config.php';
+define ('POCHE', '1.8.1');
+require 'check_essentials.php';
+require 'check_setup.php';
+require_once 'inc/poche/global.inc.php';
 
-$entries = display_view($view);
+// Start session
+Session::$sessionName = 'wallabag';
+Session::init();
 
-$tpl->assign('title', 'poche, a read it later open source system');
-$tpl->assign('view', $view);
-$tpl->assign('poche_url', get_poche_url());
-$tpl->assign('entries', $entries);
-$tpl->assign('load_all_js', 1);
-$tpl->assign('token', $_SESSION['token_poche']);
-
-$tpl->draw('head');
-$tpl->draw('home');
-$tpl->draw('entries');
-$tpl->draw('js');
-$tpl->draw('footer');
+// Let's rock !
+$wallabag = new Poche();
+$wallabag->run();