2 require_once dirname(__FILE__
).'/../inc/poche/Tools.class.php';
3 include dirname(__FILE__
).'/../inc/poche/define.inc.php';
4 include dirname(__FILE__
).'/../inc/poche/myconfig.inc.php';
5 require_once __DIR__
. '/../inc/poche/Database.class.php';
6 $store = new Database();
9 <!--[if lte IE
6]> <html
class="no-js ie6 ie67 ie678" lang
="en"> <![endif]-->
10 <!--[if lte IE
7]> <html
class="no-js ie7 ie67 ie678" lang
="en"> <![endif]-->
11 <!--[if IE
8]> <html
class="no-js ie8 ie678" lang
="en"> <![endif]-->
12 <!--[if gt IE
8]><!--> <html
class="no-js" lang
="en"> <!--<![endif]-->
15 <meta charset
="utf-8">
16 <title
>updating poche
</title
>
19 <h1
>update poche to
1.0-beta4
</h1
>
23 <li
>enhancement
: updating
and installing poche are more easier
</li
>
24 <li
>enhancement
: poche now uses Full Text RSS to fetch content
</li
>
25 <li
>enhancement
: css
and twig files are more clean
, thanks to NumEricR
and nicofrand
</li
>
26 <li
>enhancement
: updated german translation
, thanks to HLFH
</li
>
27 <li
>enhancement
: add db
/, cache
/ and assets
/ directories in versioning
</li
>
28 <li
>enhancement
: display messages when error with import
, thanks to EliasZ
</li
>
29 <li
>enhancement
: poche compatibility test file
</li
>
30 <li
>enhancement
: <a href
="https://github.com/inthepoche/poche/issues/112">#112</a>: link with shaarli</li>
31 <li
>enhancement
: <a href
="https://github.com/inthepoche/poche/issues/162">#162</a>: links to firefox / chrome / android apps in config screen</li>
32 <li
>bug
: encode url to share with twitter
/ email
/ shaarli
</li
>
33 <li
>bug
: Add IPv4 url
support (and others beginning by a digit
)</li
>
34 <li
>bug
: title page in article view was wrong
</li
>
35 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/148">#148</a>: use of undefined constant POCHE_VERSION</li>
36 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/148">#149</a>: can't poche theguardian.com</li>
37 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/150">#150</a>: default title for untitled articles</li>
38 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/150">#151</a>: HTML entities in titles are encoded twice</li>
39 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/169">#169</a>: entries height with short description</li>
40 <li
>bug
: <a href
="https://github.com/inthepoche/poche/issues/175">#175</a>: IP addresses do not appear in "view original"</li>
42 <p
>To update your poche
, please fill the following fields
.</p
>
44 <form name
="update" method
="post">
45 <div
><label
for="login">login
:</label
> <input type
="text" name
="login" id
="login" /></div
>
46 <div
><label
for="password">password
:</label
> <input type
="password" name
="password" id
="password" /></div
>
47 <div
><input type
="hidden" name
="go" value
="ok" /><input type
="submit" value
="update" /></div
>
51 if (isset($_POST['go'])) {
52 if (!empty($_POST['login']) && !empty($_POST['password'])) {
53 $user = $store->login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . SALT
));
54 if ($user != array()) {
55 $myconfig_file = '../inc/poche/myconfig.inc.php';
56 # just change version number in config file
58 if (!is_writable('../inc/poche/myconfig.inc.php')) {
59 die('You don\'t have write access to open ./inc/poche/myconfig.inc.php.');
62 if (file_exists($myconfig_file))
64 $content = str_replace('1.0-beta3', '1.0-beta4', file_get_contents($myconfig_file));
65 file_put_contents($myconfig_file, $content);
68 <p
><span style
="color: green;">your poche is up to date
!</span
></p
>
69 <p
><span style
="color: red;">don
't forget to delete ./install/ folder after the update.</span></p>
70 <p><a href="../">go back to your poche</a></p>