diff options
-rw-r--r-- | check_setup.php | 40 | ||||
-rw-r--r-- | inc/poche/Database.class.php | 40 | ||||
-rw-r--r-- | inc/poche/Poche.class.php | 45 | ||||
-rw-r--r-- | index.php | 3 | ||||
-rw-r--r-- | install/index.php | 283 | ||||
-rwxr-xr-x | themes/baggy/css/messages.css | 19 | ||||
-rw-r--r-- | themes/default/_menu.twig | 5 | ||||
-rwxr-xr-x | themes/default/_pocheit-form.twig | 22 | ||||
-rw-r--r-- | themes/default/css/style.css | 13 | ||||
-rw-r--r-- | themes/default/home.twig | 1 | ||||
-rw-r--r-- | wallabag_compatibility_test.php | 2 |
11 files changed, 457 insertions, 16 deletions
diff --git a/check_setup.php b/check_setup.php new file mode 100644 index 00000000..96dd0f7d --- /dev/null +++ b/check_setup.php | |||
@@ -0,0 +1,40 @@ | |||
1 | <?php | ||
2 | |||
3 | // PHP 5.3 minimum | ||
4 | if (version_compare(PHP_VERSION, '5.3.3', '<')) { | ||
5 | die('This software require PHP 5.3.3 minimum'); | ||
6 | } | ||
7 | |||
8 | // Short tags must be enabled for PHP < 5.4 | ||
9 | if (version_compare(PHP_VERSION, '5.4.0', '<')) { | ||
10 | |||
11 | if (! ini_get('short_open_tag')) { | ||
12 | die('This software require to have short tags enabled, check your php.ini => "short_open_tag = On"'); | ||
13 | } | ||
14 | } | ||
15 | |||
16 | // Check PDO Sqlite | ||
17 | if (! extension_loaded('pdo_sqlite')) { | ||
18 | die('PHP extension required: pdo_sqlite'); | ||
19 | } | ||
20 | |||
21 | // Check ZIP | ||
22 | if (! extension_loaded('zip')) { | ||
23 | die('PHP extension required: zip'); | ||
24 | } | ||
25 | |||
26 | // Check if /cache is writeable | ||
27 | if (! is_writable('cache')) { | ||
28 | die('The directory "cache" must be writeable by your web server user'); | ||
29 | } | ||
30 | |||
31 | // Check if /db is writeable | ||
32 | if (! is_writable('db')) { | ||
33 | die('The directory "db" must be writeable by your web server user'); | ||
34 | } | ||
35 | |||
36 | // install folder still present, need to install wallabag | ||
37 | if (is_dir('install')) { | ||
38 | require('install/index.php'); | ||
39 | exit; | ||
40 | } \ No newline at end of file | ||
diff --git a/inc/poche/Database.class.php b/inc/poche/Database.class.php index 9f553fa1..3332b5a3 100644 --- a/inc/poche/Database.class.php +++ b/inc/poche/Database.class.php | |||
@@ -241,6 +241,22 @@ class Database { | |||
241 | return isset($entry[0]) ? $entry[0] : null; | 241 | return isset($entry[0]) ? $entry[0] : null; |
242 | } | 242 | } |
243 | 243 | ||
244 | public function retrieveOneByURL($url, $user_id) { | ||
245 | $entry = NULL; | ||
246 | $sql = "SELECT * FROM entries WHERE url=? AND user_id=?"; | ||
247 | $params = array($url, $user_id); | ||
248 | $query = $this->executeQuery($sql, $params); | ||
249 | $entry = $query->fetchAll(); | ||
250 | |||
251 | return isset($entry[0]) ? $entry[0] : null; | ||
252 | } | ||
253 | |||
254 | public function reassignTags($old_entry_id, $new_entry_id) { | ||
255 | $sql = "UPDATE tags_entries SET entry_id=? WHERE entry_id=?"; | ||
256 | $params = array($new_entry_id, $old_entry_id); | ||
257 | $query = $this->executeQuery($sql, $params); | ||
258 | } | ||
259 | |||
244 | public function getEntriesByView($view, $user_id, $limit = '') { | 260 | public function getEntriesByView($view, $user_id, $limit = '') { |
245 | switch ($_SESSION['sort']) | 261 | switch ($_SESSION['sort']) |
246 | { | 262 | { |
@@ -328,30 +344,36 @@ class Database { | |||
328 | return $this->getHandle()->lastInsertId($column); | 344 | return $this->getHandle()->lastInsertId($column); |
329 | } | 345 | } |
330 | 346 | ||
331 | public function retrieveAllTags() { | 347 | public function retrieveAllTags($user_id) { |
332 | $sql = "SELECT * FROM tags"; | 348 | $sql = "SELECT tags.* FROM tags |
333 | $query = $this->executeQuery($sql, array()); | 349 | LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id |
350 | LEFT JOIN entries ON tags_entries.entry_id=entries.id | ||
351 | WHERE entries.user_id=?"; | ||
352 | $query = $this->executeQuery($sql, array($user_id)); | ||
334 | $tags = $query->fetchAll(); | 353 | $tags = $query->fetchAll(); |
335 | 354 | ||
336 | return $tags; | 355 | return $tags; |
337 | } | 356 | } |
338 | 357 | ||
339 | public function retrieveTag($id) { | 358 | public function retrieveTag($id, $user_id) { |
340 | $tag = NULL; | 359 | $tag = NULL; |
341 | $sql = "SELECT * FROM tags WHERE id=?"; | 360 | $sql = "SELECT tags.* FROM tags |
342 | $params = array(intval($id)); | 361 | LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id |
362 | LEFT JOIN entries ON tags_entries.entry_id=entries.id | ||
363 | WHERE tags.id=? AND entries.user_id=?"; | ||
364 | $params = array(intval($id), $user_id); | ||
343 | $query = $this->executeQuery($sql, $params); | 365 | $query = $this->executeQuery($sql, $params); |
344 | $tag = $query->fetchAll(); | 366 | $tag = $query->fetchAll(); |
345 | 367 | ||
346 | return isset($tag[0]) ? $tag[0] : null; | 368 | return isset($tag[0]) ? $tag[0] : null; |
347 | } | 369 | } |
348 | 370 | ||
349 | public function retrieveEntriesByTag($tag_id) { | 371 | public function retrieveEntriesByTag($tag_id, $user_id) { |
350 | $sql = | 372 | $sql = |
351 | "SELECT entries.* FROM entries | 373 | "SELECT entries.* FROM entries |
352 | LEFT JOIN tags_entries ON tags_entries.entry_id=entries.id | 374 | LEFT JOIN tags_entries ON tags_entries.entry_id=entries.id |
353 | WHERE tags_entries.tag_id = ?"; | 375 | WHERE tags_entries.tag_id = ? AND entries.user_id=?"; |
354 | $query = $this->executeQuery($sql, array($tag_id)); | 376 | $query = $this->executeQuery($sql, array($tag_id, $user_id)); |
355 | $entries = $query->fetchAll(); | 377 | $entries = $query->fetchAll(); |
356 | 378 | ||
357 | return $entries; | 379 | return $entries; |
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index d0e2de1f..753bd7f0 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -374,6 +374,11 @@ class Poche | |||
374 | $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'); | 374 | $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'); |
375 | $body = $content['rss']['channel']['item']['description']; | 375 | $body = $content['rss']['channel']['item']['description']; |
376 | 376 | ||
377 | //search for possible duplicate if not in import mode | ||
378 | if (!$import) { | ||
379 | $duplicate = $this->store->retrieveOneByURL($url->getUrl(), $this->user->getId()); | ||
380 | } | ||
381 | |||
377 | if ($this->store->add($url->getUrl(), $title, $body, $this->user->getId())) { | 382 | if ($this->store->add($url->getUrl(), $title, $body, $this->user->getId())) { |
378 | Tools::logm('add link ' . $url->getUrl()); | 383 | Tools::logm('add link ' . $url->getUrl()); |
379 | $sequence = ''; | 384 | $sequence = ''; |
@@ -386,6 +391,20 @@ class Poche | |||
386 | Tools::logm('updating content article'); | 391 | Tools::logm('updating content article'); |
387 | $this->store->updateContent($last_id, $content, $this->user->getId()); | 392 | $this->store->updateContent($last_id, $content, $this->user->getId()); |
388 | } | 393 | } |
394 | |||
395 | if ($duplicate != NULL) { | ||
396 | // duplicate exists, so, older entry needs to be deleted (as new entry should go to the top of list), BUT favorite mark and tags should be preserved | ||
397 | Tools::logm('link ' . $url->getUrl() . ' is a duplicate'); | ||
398 | // 1) - preserve tags and favorite, then drop old entry | ||
399 | $this->store->reassignTags($duplicate['id'], $last_id); | ||
400 | if ($duplicate['is_fav']) { | ||
401 | $this->store->favoriteById($last_id, $this->user->getId()); | ||
402 | } | ||
403 | if ($this->store->deleteById($duplicate['id'], $this->user->getId())) { | ||
404 | Tools::logm('previous link ' . $url->getUrl() .' entry deleted'); | ||
405 | } | ||
406 | } | ||
407 | |||
389 | if (!$import) { | 408 | if (!$import) { |
390 | $this->messages->add('s', _('the link has been added successfully')); | 409 | $this->messages->add('s', _('the link has been added successfully')); |
391 | } | 410 | } |
@@ -444,6 +463,12 @@ class Poche | |||
444 | case 'add_tag' : | 463 | case 'add_tag' : |
445 | $tags = explode(',', $_POST['value']); | 464 | $tags = explode(',', $_POST['value']); |
446 | $entry_id = $_POST['entry_id']; | 465 | $entry_id = $_POST['entry_id']; |
466 | $entry = $this->store->retrieveOneById($entry_id, $this->user->getId()); | ||
467 | if (!$entry) { | ||
468 | $this->messages->add('e', _('Article not found!')); | ||
469 | Tools::logm('error : article not found'); | ||
470 | Tools::redirect(); | ||
471 | } | ||
447 | foreach($tags as $key => $tag_value) { | 472 | foreach($tags as $key => $tag_value) { |
448 | $value = trim($tag_value); | 473 | $value = trim($tag_value); |
449 | $tag = $this->store->retrieveTagByValue($value); | 474 | $tag = $this->store->retrieveTagByValue($value); |
@@ -468,6 +493,12 @@ class Poche | |||
468 | break; | 493 | break; |
469 | case 'remove_tag' : | 494 | case 'remove_tag' : |
470 | $tag_id = $_GET['tag_id']; | 495 | $tag_id = $_GET['tag_id']; |
496 | $entry = $this->store->retrieveOneById($id, $this->user->getId()); | ||
497 | if (!$entry) { | ||
498 | $this->messages->add('e', _('Article not found!')); | ||
499 | Tools::logm('error : article not found'); | ||
500 | Tools::redirect(); | ||
501 | } | ||
471 | $this->store->removeTagForEntry($id, $tag_id); | 502 | $this->store->removeTagForEntry($id, $tag_id); |
472 | Tools::redirect(); | 503 | Tools::redirect(); |
473 | break; | 504 | break; |
@@ -506,6 +537,12 @@ class Poche | |||
506 | break; | 537 | break; |
507 | case 'edit-tags': | 538 | case 'edit-tags': |
508 | # tags | 539 | # tags |
540 | $entry = $this->store->retrieveOneById($id, $this->user->getId()); | ||
541 | if (!$entry) { | ||
542 | $this->messages->add('e', _('Article not found!')); | ||
543 | Tools::logm('error : article not found'); | ||
544 | Tools::redirect(); | ||
545 | } | ||
509 | $tags = $this->store->retrieveTagsByEntry($id); | 546 | $tags = $this->store->retrieveTagsByEntry($id); |
510 | $tpl_vars = array( | 547 | $tpl_vars = array( |
511 | 'entry_id' => $id, | 548 | 'entry_id' => $id, |
@@ -513,8 +550,8 @@ class Poche | |||
513 | ); | 550 | ); |
514 | break; | 551 | break; |
515 | case 'tag': | 552 | case 'tag': |
516 | $entries = $this->store->retrieveEntriesByTag($id); | 553 | $entries = $this->store->retrieveEntriesByTag($id, $this->user->getId()); |
517 | $tag = $this->store->retrieveTag($id); | 554 | $tag = $this->store->retrieveTag($id, $this->user->getId()); |
518 | $tpl_vars = array( | 555 | $tpl_vars = array( |
519 | 'tag' => $tag, | 556 | 'tag' => $tag, |
520 | 'entries' => $entries, | 557 | 'entries' => $entries, |
@@ -522,7 +559,7 @@ class Poche | |||
522 | break; | 559 | break; |
523 | case 'tags': | 560 | case 'tags': |
524 | $token = $this->user->getConfigValue('token'); | 561 | $token = $this->user->getConfigValue('token'); |
525 | $tags = $this->store->retrieveAllTags(); | 562 | $tags = $this->store->retrieveAllTags($this->user->getId()); |
526 | $tpl_vars = array( | 563 | $tpl_vars = array( |
527 | 'token' => $token, | 564 | 'token' => $token, |
528 | 'user_id' => $this->user->getId(), | 565 | 'user_id' => $this->user->getId(), |
@@ -1037,7 +1074,7 @@ class Poche | |||
1037 | $feed->setChannelElement('author', 'wallabag'); | 1074 | $feed->setChannelElement('author', 'wallabag'); |
1038 | 1075 | ||
1039 | if ($type == 'tag') { | 1076 | if ($type == 'tag') { |
1040 | $entries = $this->store->retrieveEntriesByTag($tag_id); | 1077 | $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id); |
1041 | } | 1078 | } |
1042 | else { | 1079 | else { |
1043 | $entries = $this->store->getEntriesByView($type, $user_id); | 1080 | $entries = $this->store->getEntriesByView($type, $user_id); |
@@ -8,7 +8,8 @@ | |||
8 | * @license http://www.wtfpl.net/ see COPYING file | 8 | * @license http://www.wtfpl.net/ see COPYING file |
9 | */ | 9 | */ |
10 | 10 | ||
11 | define ('POCHE', '1.5.0'); | 11 | define ('POCHE', '1.5.1'); |
12 | require 'check_setup.php'; | ||
12 | require_once 'inc/poche/global.inc.php'; | 13 | require_once 'inc/poche/global.inc.php'; |
13 | session_start(); | 14 | session_start(); |
14 | 15 | ||
diff --git a/install/index.php b/install/index.php new file mode 100644 index 00000000..4d7e8cd2 --- /dev/null +++ b/install/index.php | |||
@@ -0,0 +1,283 @@ | |||
1 | <?php | ||
2 | $errors = array(); | ||
3 | $successes = array(); | ||
4 | if ($_POST['download']) { | ||
5 | if (!file_put_contents("cache/vendor.zip", fopen("http://static.wallabag.org/files/vendor.zip", 'r'))) { | ||
6 | $errors[] = 'Impossible to download vendor.zip. Please <a href="http://wllbg.org/vendor">download it manually<∕a> and unzip it in your wallabag folder.'; | ||
7 | } | ||
8 | else { | ||
9 | if (extension_loaded('zip')) { | ||
10 | $zip = new ZipArchive(); | ||
11 | if ($zip->open("cache/vendor.zip") !== TRUE){ | ||
12 | $errors[] = 'Impossible to open cache/vendor.zip. Please unzip it manually in your wallabag folder.'; | ||
13 | } | ||
14 | if ($zip->extractTo(realpath(''))) { | ||
15 | @unlink("cache/vendor.zip"); | ||
16 | $successes[] = 'twig is now installed, you can install wallabag.'; | ||
17 | } | ||
18 | else { | ||
19 | $errors[] = 'Impossible to extract cache/vendor.zip. Please unzip it manually in your wallabag folder.'; | ||
20 | } | ||
21 | $zip->close(); | ||
22 | } | ||
23 | else { | ||
24 | $errors[] = 'zip extension is not enabled in your PHP configuration. Please unzip cache/vendor.zip in your wallabag folder.'; | ||
25 | } | ||
26 | } | ||
27 | } | ||
28 | else if ($_POST['install']) { | ||
29 | if (!is_dir('vendor')) { | ||
30 | $errors[] = 'You must install twig before.'; | ||
31 | } | ||
32 | else { | ||
33 | $continue = true; | ||
34 | // Create config.inc.php | ||
35 | if (!copy('inc/poche/config.inc.php.new', 'inc/poche/config.inc.php')) { | ||
36 | $errors[] = 'Installation aborted, impossible to create inc/poche/config.inc.php file. Maybe you don\'t have write access to create it.'; | ||
37 | $continue = false; | ||
38 | } | ||
39 | else { | ||
40 | function generate_salt() { | ||
41 | mt_srand(microtime(true)*100000 + memory_get_usage(true)); | ||
42 | return md5(uniqid(mt_rand(), true)); | ||
43 | } | ||
44 | |||
45 | $content = file_get_contents('inc/poche/config.inc.php'); | ||
46 | $salt = generate_salt(); | ||
47 | $content = str_replace("define ('SALT', '');", "define ('SALT', '".$salt."');", $content); | ||
48 | file_put_contents('inc/poche/config.inc.php', $content); | ||
49 | } | ||
50 | |||
51 | if ($continue) { | ||
52 | |||
53 | // User informations | ||
54 | $username = trim($_POST['username']); | ||
55 | $password = trim($_POST['password']); | ||
56 | $salted_password = sha1($password . $username . $salt); | ||
57 | |||
58 | // Database informations | ||
59 | if ($_POST['db_engine'] == 'sqlite') { | ||
60 | if (!copy('install/poche.sqlite', 'db/poche.sqlite')) { | ||
61 | $errors[] = 'Impossible to create inc/poche/config.inc.php file.'; | ||
62 | $continue = false; | ||
63 | } | ||
64 | else { | ||
65 | $db_path = 'sqlite:' . realpath('') . '/db/poche.sqlite'; | ||
66 | $handle = new PDO($db_path); | ||
67 | } | ||
68 | } | ||
69 | else { | ||
70 | $content = file_get_contents('inc/poche/config.inc.php'); | ||
71 | |||
72 | if ($_POST['db_engine'] == 'mysql') { | ||
73 | $db_path = 'mysql:host=' . $_POST['mysql_server'] . ';dbname=' . $_POST['mysql_database']; | ||
74 | $content = str_replace("define ('STORAGE_SERVER', 'localhost');", "define ('STORAGE_SERVER', '".$_POST['mysql_server']."');", $content); | ||
75 | $content = str_replace("define ('STORAGE_DB', 'poche');", "define ('STORAGE_DB', '".$_POST['mysql_database']."');", $content); | ||
76 | $content = str_replace("define ('STORAGE_USER', 'poche');", "define ('STORAGE_USER', '".$_POST['mysql_user']."');", $content); | ||
77 | $content = str_replace("define ('STORAGE_PASSWORD', 'poche');", "define ('STORAGE_PASSWORD', '".$_POST['mysql_password']."');", $content); | ||
78 | $handle = new PDO($db_path, $_POST['mysql_user'], $_POST['mysql_password']); | ||
79 | |||
80 | $sql_structure = file_get_contents('install/mysql.sql'); | ||
81 | } | ||
82 | else if ($_POST['db_engine'] == 'postgresql') { | ||
83 | $db_path = 'pgsql:host=' . $_POST['pg_server'] . ';dbname=' . $_POST['pg_database']; | ||
84 | $content = str_replace("define ('STORAGE_SERVER', 'localhost');", "define ('STORAGE_SERVER', '".$_POST['pg_server']."');", $content); | ||
85 | $content = str_replace("define ('STORAGE_DB', 'poche');", "define ('STORAGE_DB', '".$_POST['pg_database']."');", $content); | ||
86 | $content = str_replace("define ('STORAGE_USER', 'poche');", "define ('STORAGE_USER', '".$_POST['pg_user']."');", $content); | ||
87 | $content = str_replace("define ('STORAGE_PASSWORD', 'poche');", "define ('STORAGE_PASSWORD', '".$_POST['pg_password']."');", $content); | ||
88 | $handle = new PDO($db_path, $_POST['pg_user'], $_POST['pg_password']); | ||
89 | |||
90 | $sql_structure = file_get_contents('install/postgres.sql'); | ||
91 | } | ||
92 | |||
93 | $content = str_replace("define ('STORAGE', 'sqlite');", "define ('STORAGE', '".$_POST['db_engine']."');", $content); | ||
94 | file_put_contents('inc/poche/config.inc.php', $content); | ||
95 | } | ||
96 | |||
97 | if ($continue) { | ||
98 | |||
99 | function executeQuery($handle, $sql, $params) { | ||
100 | try | ||
101 | { | ||
102 | $query = $handle->prepare($sql); | ||
103 | $query->execute($params); | ||
104 | return $query->fetchAll(); | ||
105 | } | ||
106 | catch (Exception $e) | ||
107 | { | ||
108 | return FALSE; | ||
109 | } | ||
110 | } | ||
111 | |||
112 | // create database structure | ||
113 | $query = executeQuery($handle, $sql_structure, array()); | ||
114 | |||
115 | // Create user | ||
116 | $handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); | ||
117 | |||
118 | $sql = 'INSERT INTO users (username, password, name) VALUES (?, ?, ?)'; | ||
119 | $params = array($username, $salted_password, $username); | ||
120 | $query = executeQuery($handle, $sql, $params); | ||
121 | |||
122 | $id_user = $handle->lastInsertId(); | ||
123 | |||
124 | $sql = 'INSERT INTO users_config ( user_id, name, value ) VALUES (?, ?, ?)'; | ||
125 | $params = array($id_user, 'pager', '10'); | ||
126 | $query = executeQuery($handle, $sql, $params); | ||
127 | |||
128 | $sql = 'INSERT INTO users_config ( user_id, name, value ) VALUES (?, ?, ?)'; | ||
129 | $params = array($id_user, 'language', 'en_EN.UTF8'); | ||
130 | $query = executeQuery($handle, $sql, $params); | ||
131 | |||
132 | $successes[] = 'wallabag is now installed. Don\'t forget to delete install folder. Then, <a href="index.php">reload this page</a>.'; | ||
133 | } | ||
134 | } | ||
135 | } | ||
136 | } | ||
137 | ?> | ||
138 | <!DOCTYPE html> | ||
139 | <html> | ||
140 | <head> | ||
141 | <meta name="viewport" content="initial-scale=1.0"> | ||
142 | <meta charset="utf-8"> | ||
143 | <!--[if IE]> | ||
144 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | ||
145 | <![endif]--> | ||
146 | <title>wallabag — installation</title> | ||
147 | <link rel="shortcut icon" type="image/x-icon" href="themes/baggy/img/favicon.ico" /> | ||
148 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="themes/baggy/img/apple-touch-icon-144x144-precomposed.png"> | ||
149 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="themes/baggy/img/apple-touch-icon-72x72-precomposed.png"> | ||
150 | <link rel="apple-touch-icon-precomposed" href="themes/baggy/img/apple-touch-icon-precomposed.png"> | ||
151 | <link href='//fonts.googleapis.com/css?family=PT+Sans:700' rel='stylesheet' type='text/css'> | ||
152 | <link rel="stylesheet" href="themes/baggy/css/ratatouille.css" media="all"> | ||
153 | <link rel="stylesheet" href="themes/baggy/css/font.css" media="all"> | ||
154 | <link rel="stylesheet" href="themes/baggy/css/main.css" media="all"> | ||
155 | <link rel="stylesheet" href="themes/baggy/css/messages.css" media="all"> | ||
156 | <link rel="stylesheet" href="themes/baggy/css/print.css" media="print"> | ||
157 | <script src="themes/baggy/js/jquery-2.0.3.min.js"></script> | ||
158 | <script src="themes/baggy/js/init.js"></script> | ||
159 | </head> | ||
160 | <body> | ||
161 | <header class="w600p center mbm"> | ||
162 | <h1 class="logo"> | ||
163 | <img width="100" height="100" src="themes/baggy/img/logo-w.png" alt="logo poche" /> | ||
164 | </h1> | ||
165 | </header> | ||
166 | <div id="main"> | ||
167 | <button id="menu" class="icon icon-menu desktopHide"><span>Menu</span></button> | ||
168 | <ul id="links" class="links"> | ||
169 | <li><a href="http://www.wallabag.org/frequently-asked-questions/">FAQ</a></li> | ||
170 | <li><a href="http://doc.wallabag.org/">doc</a></li> | ||
171 | <li><a href="http://www.wallabag.org/help/">help</a></li> | ||
172 | <li><a href="http://www.wallabag.org/">wallabag.org</a></li> | ||
173 | </ul> | ||
174 | <?php if (!empty($errors)) : ?> | ||
175 | <div class='install messages error'> | ||
176 | <p>Errors during installation:</p> | ||
177 | <p> | ||
178 | <ul> | ||
179 | <?php foreach($errors as $error) :?> | ||
180 | <li><?php echo $error; ?></li> | ||
181 | <?php endforeach; ?> | ||
182 | </ul> | ||
183 | </p> | ||
184 | <p><a href="index.php">Please reload</a> this page when you think you resolved these problems.</p> | ||
185 | </div> | ||
186 | <?php endif; ?> | ||
187 | <?php if (!empty($successes)) : ?> | ||
188 | <div class='install messages success'> | ||
189 | <p> | ||
190 | <ul> | ||
191 | <?php foreach($successes as $success) :?> | ||
192 | <li><?php echo $success; ?></li> | ||
193 | <?php endforeach; ?> | ||
194 | </ul> | ||
195 | </p> | ||
196 | </div> | ||
197 | <?php endif; ?> | ||
198 | <p>To install wallabag, you just have to fill the following fields. That's all.</p> | ||
199 | <p>Don't forget to check your server compatibility <a href="wallabag_compatibility_test.php">here</a>.</p> | ||
200 | <form method="post"> | ||
201 | <fieldset> | ||
202 | <legend><strong>Technical settings</strong></legend> | ||
203 | <?php if (!is_dir('vendor')) : ?> | ||
204 | <div class='install messages notice'>wallabag needs twig, a template engine (<a href="http://twig.sensiolabs.org/">?</a>). Two ways to install it: | ||
205 | <ul> | ||
206 | <li>automatically download and extract vendor.zip into your wallabag folder. | ||
207 | <p><input type="submit" name="download" value="Download vendor.zip" /></p> | ||
208 | <?php if (!extension_loaded('zip')) : ?> | ||
209 | <b>Be careful, zip extension is not enabled in your PHP configuration. You'll have to unzip vendor.zip manually.</b> | ||
210 | <?php endif; ?> | ||
211 | <em>This method is mainly recommended if you don't have a dedicated server.</em></li> | ||
212 | <li>use <a href="http://getcomposer.org/">Composer</a> :<pre><code>curl -s http://getcomposer.org/installer | php | ||
213 | php composer.phar install</code></pre></li> | ||
214 | </ul> | ||
215 | </div> | ||
216 | <?php endif; ?> | ||
217 | <p> | ||
218 | Database engine: | ||
219 | <ul> | ||
220 | <li><label for="sqlite">SQLite</label> <input name="db_engine" type="radio" checked="" id="sqlite" value="sqlite" /></li> | ||
221 | <li> | ||
222 | <label for="mysql">MySQL</label> <input name="db_engine" type="radio" id="mysql" value="mysql" /> | ||
223 | <ul id="mysql_infos"> | ||
224 | <li><label for="mysql_server">Server</label> <input type="text" placeholder="localhost" id="mysql_server" name="mysql_server" /></li> | ||
225 | <li><label for="mysql_database">Database</label> <input type="text" placeholder="wallabag" id="mysql_database" name="mysql_database" /></li> | ||
226 | <li><label for="mysql_user">User</label> <input type="text" placeholder="user" id="mysql_user" name="mysql_user" /></li> | ||
227 | <li><label for="mysql_password">Password</label> <input type="text" placeholder="p4ssw0rd" id="mysql_password" name="mysql_password" /></li> | ||
228 | </ul> | ||
229 | </li> | ||
230 | <li> | ||
231 | <label for="postgresql">PostgreSQL</label> <input name="db_engine" type="radio" id="postgresql" value="postgresql" /> | ||
232 | <ul id="pg_infos"> | ||
233 | <li><label for="pg_server">Server</label> <input type="text" placeholder="localhost" id="pg_server" name="pg_server" /></li> | ||
234 | <li><label for="pg_database">Database</label> <input type="text" placeholder="wallabag" id="pg_database" name="pg_database" /></li> | ||
235 | <li><label for="pg_user">User</label> <input type="text" placeholder="user" id="pg_user" name="pg_user" /></li> | ||
236 | id <li><label for="pg_password">Password</label> <input type="text" placeholder="p4ssw0rd" id="pg_password" name="pg_password" /></li> | ||
237 | </ul> | ||
238 | </li> | ||
239 | </ul> | ||
240 | </p> | ||
241 | </fieldset> | ||
242 | |||
243 | <fieldset> | ||
244 | <legend><strong>User settings</strong></legend> | ||
245 | <p> | ||
246 | <label for="username">Username</label> | ||
247 | <input type="text" required id="username" name="username" value="wallabag" /> | ||
248 | </p> | ||
249 | <p> | ||
250 | <label for="password">Password</label> | ||
251 | <input type="password" required id="password" name="password" value="wallabag" /> | ||
252 | </p> | ||
253 | <p> | ||
254 | <label for="show">Show password:</label> <input name="show" id="show" type="checkbox" onchange="document.getElementById('password').type = this.checked ? 'text' : 'password'"> | ||
255 | </p> | ||
256 | </fieldset> | ||
257 | |||
258 | <input type="submit" value="Install wallabag" name="install" /> | ||
259 | </form> | ||
260 | </div> | ||
261 | <script> | ||
262 | $("#mysql_infos").hide(); | ||
263 | $("#pg_infos").hide(); | ||
264 | $("input[name=db_engine]").click(function() | ||
265 | { | ||
266 | if ( $("#mysql").prop('checked')) { | ||
267 | $("#mysql_infos").show(); | ||
268 | $("#pg_infos").hide(); | ||
269 | } | ||
270 | else { | ||
271 | if ( $("#postgresql").prop('checked')) { | ||
272 | $("#mysql_infos").hide(); | ||
273 | $("#pg_infos").show(); | ||
274 | } | ||
275 | else { | ||
276 | $("#mysql_infos").hide(); | ||
277 | $("#pg_infos").hide(); | ||
278 | } | ||
279 | } | ||
280 | }); | ||
281 | </script> | ||
282 | </body> | ||
283 | </html> \ No newline at end of file | ||
diff --git a/themes/baggy/css/messages.css b/themes/baggy/css/messages.css index e69de29b..85a0dbc1 100755 --- a/themes/baggy/css/messages.css +++ b/themes/baggy/css/messages.css | |||
@@ -0,0 +1,19 @@ | |||
1 | .install .messages.error { | ||
2 | border: 1px solid #c42608; | ||
3 | color: #c00 !important; | ||
4 | background: #fff0ef; | ||
5 | text-align: left; | ||
6 | } | ||
7 | |||
8 | .install .messages.notice { | ||
9 | border: 1px solid #ebcd41; | ||
10 | color: #000; | ||
11 | background: #fffcd3; | ||
12 | text-align: left; | ||
13 | } | ||
14 | |||
15 | .install .messages.success { | ||
16 | border: 1px solid #6dc70c; | ||
17 | background: #e0fbcc; | ||
18 | text-align: left; | ||
19 | } \ No newline at end of file | ||
diff --git a/themes/default/_menu.twig b/themes/default/_menu.twig index 02bec1dc..55583b3d 100644 --- a/themes/default/_menu.twig +++ b/themes/default/_menu.twig | |||
@@ -3,6 +3,9 @@ | |||
3 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | 3 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> |
4 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | 4 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> |
5 | <li><a href="./?view=tags" {% if view == 'tags' %}class="current"{% endif %}>{% trans "tags" %}</a></li> | 5 | <li><a href="./?view=tags" {% if view == 'tags' %}class="current"{% endif %}>{% trans "tags" %}</a></li> |
6 | <li><a href="javascript: void(null);" id="pocheit">{% trans "save a link" %}</a><span id="pocheit-arrow"></span></li> | ||
6 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | 7 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> |
7 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | 8 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> |
8 | </ul> \ No newline at end of file | 9 | </ul> |
10 | {% include '_pocheit-form.twig' %} | ||
11 | |||
diff --git a/themes/default/_pocheit-form.twig b/themes/default/_pocheit-form.twig new file mode 100755 index 00000000..13096159 --- /dev/null +++ b/themes/default/_pocheit-form.twig | |||
@@ -0,0 +1,22 @@ | |||
1 | <div id="pocheit-form" class="messages info"> | ||
2 | <center> | ||
3 | <form method="get" action="index.php"> | ||
4 | <input required placeholder="example.com/article" class="addurl" id="plainurl" name="plainurl" type="url" /> | ||
5 | <input type="submit" value="{% trans "save link!" %}" /> | ||
6 | </form> | ||
7 | </center> | ||
8 | </div> | ||
9 | <script type="text/javascript"> | ||
10 | $(document).ready(function() { | ||
11 | |||
12 | $("#pocheit-form").hide(); | ||
13 | |||
14 | $("#pocheit").click(function(){ | ||
15 | $("#pocheit-form").toggle(); | ||
16 | $("#pocheit").toggleClass("current"); | ||
17 | $("#pocheit-arrow").toggleClass("arrow-down"); | ||
18 | }); | ||
19 | |||
20 | |||
21 | }); | ||
22 | </script> | ||
diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 2088ee2e..28675907 100644 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css | |||
@@ -334,3 +334,16 @@ a.bad-display span, | |||
334 | a.reading-time span { | 334 | a.reading-time span { |
335 | background-repeat: no-repeat; | 335 | background-repeat: no-repeat; |
336 | } | 336 | } |
337 | |||
338 | .arrow-down { | ||
339 | width: 0px; | ||
340 | height: 0px; | ||
341 | border-style: solid; | ||
342 | border-width: 10px 10px 0 10px; | ||
343 | border-color: #000 transparent transparent transparent; | ||
344 | |||
345 | position: absolute; | ||
346 | margin-top: 1.5em; | ||
347 | margin-left: -30px; | ||
348 | } | ||
349 | |||
diff --git a/themes/default/home.twig b/themes/default/home.twig index cbe8c62f..21013ec8 100644 --- a/themes/default/home.twig +++ b/themes/default/home.twig | |||
@@ -46,4 +46,5 @@ | |||
46 | {% endfor %} | 46 | {% endfor %} |
47 | {% endif %} | 47 | {% endif %} |
48 | {{ block('pager') }} | 48 | {{ block('pager') }} |
49 | {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "mark all the entries as read" %}" href="./?action=archive_all">{% trans "mark all the entries as read" %}</a>{% endif %}{% endif %} | ||
49 | {% endblock %} | 50 | {% endblock %} |
diff --git a/wallabag_compatibility_test.php b/wallabag_compatibility_test.php index fd285042..26dce018 100644 --- a/wallabag_compatibility_test.php +++ b/wallabag_compatibility_test.php | |||
@@ -176,7 +176,7 @@ div.chunk { | |||
176 | <tbody> | 176 | <tbody> |
177 | <tr class="<?php echo ($php_ok) ? 'enabled' : 'disabled'; ?>"> | 177 | <tr class="<?php echo ($php_ok) ? 'enabled' : 'disabled'; ?>"> |
178 | <td>PHP</td> | 178 | <td>PHP</td> |
179 | <td>5.2.0 or higher</td> | 179 | <td>5.3.3 or higher</td> |
180 | <td><?php echo phpversion(); ?></td> | 180 | <td><?php echo phpversion(); ?></td> |
181 | </tr> | 181 | </tr> |
182 | <tr class="<?php echo ($xml_ok) ? 'enabled, and sane' : 'disabled, or broken'; ?>"> | 182 | <tr class="<?php echo ($xml_ok) ? 'enabled, and sane' : 'disabled, or broken'; ?>"> |