README, CREDITS & chmod

This commit is contained in:
nicosomb 2013-04-17 15:32:57 +02:00
parent 1c182b6c9d
commit d178419c66
20 changed files with 18 additions and 7 deletions

View File

@ -11,3 +11,4 @@ poche is developed by Nicolas Lœuillet under the Do What the Fuck You Want to P
Contributors :
Nicolas Lœuillet aka nico_somb
Tom.C. aka tmos
PeaceCopathe

9
README.md Executable file → Normal file
View File

@ -12,12 +12,21 @@ To get news from poche, [follow us on twitter](http://twitter.com/getpoche).
## Usage
You can easily add a "poched" page with the bookmarklet.
poche save the entire content of a poched links : text and pictures are stored on your server.
You can :
* read a page in a comfortable reading view
* archive a link
* put a link in favorite
* delete a link
## Requirements & installation
You have to install [sqlite for php](http://www.php.net/manual/en/book.sqlite.php) on your server.
Get the [latest version](https://github.com/nicosomb/poche) of poche on github. Unzip it and upload it on your server. poche must have write access on assets, cache and db directories.
That's all, **poche works** !
## Security
You **have** to protect your db/poche.sqlite file. Modify the virtual host of your website to add this condition :
```apache

0
img/checkmark-off.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 277 B

0
img/checkmark-on.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 235 B

After

Width:  |  Height:  |  Size: 235 B

0
img/down.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 216 B

After

Width:  |  Height:  |  Size: 216 B

0
img/remove.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 252 B

After

Width:  |  Height:  |  Size: 252 B

0
img/star-off.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 314 B

After

Width:  |  Height:  |  Size: 314 B

0
img/star-on.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 281 B

After

Width:  |  Height:  |  Size: 281 B

0
img/up.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 212 B

After

Width:  |  Height:  |  Size: 212 B

0
inc/Encoding.php Executable file → Normal file
View File

0
inc/JSLikeHTMLElement.php Executable file → Normal file
View File

0
inc/Readability.php Executable file → Normal file
View File

View File

@ -8,9 +8,12 @@
* @license http://www.wtfpl.net/ see COPYING file
*/
if(!is_dir('db/')){mkdir('db/',0705);}
if (!is_dir('db/')) {
@mkdir('db/',0705);
}
define ('DB_PATH', 'sqlite:./db/poche.sqlite');
define ('ABS_PATH', 'archiveImg/');
define ('ABS_PATH', 'assets/');
include 'db.php';
include 'functions.php';

View File

@ -10,15 +10,13 @@
class db {
var $handle;
function __construct($path)
{
function __construct($path) {
$this->handle = new PDO($path);
$this->handle->exec('CREATE TABLE IF NOT EXISTS "entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "title" VARCHAR, "url" VARCHAR UNIQUE , "is_read" INTEGER DEFAULT 0, "is_fav" INTEGER DEFAULT 0, "content" BLOB)');
$this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
public function getHandle()
{
public function getHandle() {
return $this->handle;
}
}

0
inc/functions.php Executable file → Normal file
View File

0
inc/rain.tpl.class.php Executable file → Normal file
View File

0
index.php Executable file → Normal file
View File

0
tpl/footer.html Executable file → Normal file
View File

0
tpl/view.html Executable file → Normal file
View File

2
view.php Executable file → Normal file
View File

@ -20,7 +20,7 @@ if(!empty($id)) {
$tpl->assign('id', $entry[0]['id']);
$tpl->assign('url', $entry[0]['url']);
$tpl->assign('title', $entry[0]['title']);
$tpl->assign('content', gzinflate(base64_decode($entry[0]['content'])));
$tpl->assign('content', $entry[0]['content']);
$tpl->assign('is_fav', $entry[0]['is_fav']);
$tpl->assign('is_read', $entry[0]['is_read']);
$tpl->assign('load_all_js', 0);