]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
new messages when update / install
authorNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Fri, 23 Aug 2013 20:24:41 +0000 (22:24 +0200)
committerNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Fri, 23 Aug 2013 20:24:41 +0000 (22:24 +0200)
inc/poche/Poche.class.php
install/update_to_1beta3.php [moved from install/update.php with 100% similarity]
tpl/error.twig

index e0dc0d201daa27532d7aee8c82cfdf00812874a8..4832f81683c5b320aa0c2ae0aa4129b9d1e47f04 100644 (file)
@@ -47,16 +47,16 @@ class Poche
             die('You don\'t have write access on cache directory.');
         }
         else if (file_exists('./install/update.php') && !DEBUG_POCHE) {
-            $msg = 'A poche update is needed. Please execute this update <a href="install/update.php">by clicking here</a>. If you have already do the update, please delete /install folder.';
+            $msg = '<h1>setup</h1><p><strong>It\'s your first time here?</strong> Please copy /install/poche.sqlite in db folder. Then, delete install folder.<br /><strong>If you have already installed poche</strong>, an update is needed <a href="install/update.php">by clicking here</a>.</p>';
             $allIsGood = FALSE;
         }
         else if (file_exists('./install') && !DEBUG_POCHE) {
-            $msg = 'If you want to update your poche, you just have to delete /install folder. <br />To install your poche with sqlite, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.';
+            $msg = '<h1>setup</h1><p><strong>If you want to update your poche</strong>, you just have to delete /install folder. <br /><strong>To install your poche with sqlite</strong>, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.</p>';
             $allIsGood = FALSE;
         }
         else if (STORAGE == 'sqlite' && !is_writable(STORAGE_SQLITE)) {
             Tools::logm('you don\'t have write access on sqlite file');
-            $msg = 'You don\'t have write access on sqlite file.';
+            $msg = '<h1>error</h1><p>You don\'t have write access on sqlite file.</p>';
             $allIsGood = FALSE;
         }
         
index 84c3bc1c2aa8b5174e601a1e18c9488ee1f7db88..14c499254419a5a230a495a314a74ac501dcdebd 100644 (file)
@@ -1,7 +1,6 @@
 {% extends "layout.twig" %}
-{% block title %}{% trans "error" %}{% endblock %}
+{% block title %}{% trans "plop" %}{% endblock %}
 {% block content %}
-    <h1>error</h1>
-        <p>{{ msg|raw }}</p>
+        {{ msg|raw }}
         <p>Don't forget <a href="http://inthepoche.com/?pages/Documentation">the documentation</a>.</p>
 {% endblock %}
\ No newline at end of file