{include="includes"}
{include="status"} {include="nav"}
{'KrISS feed main information'|Intl::msg}
{'No restriction. Anyone can modify configuration, mark as read items, update feeds...'|Intl::msg} {'Anyone can access feeds and items but only you can modify configuration, mark as read items, update feeds...'|Intl::msg} {'Only you can access feeds and items and only you can modify configuration, mark as read items, update feeds...'|Intl::msg}
{'Options:'|Intl::msg}
- {'${url}: item link'|Intl::msg}
- {'${title}: item title'|Intl::msg}
- {'${via}: if domain of <link> and <guid> are different ${via} is equals to: via <guid>'|Intl::msg}
- {'${sel}: Only available with javascript: selected text'|Intl::msg}
- {'example with shaarli:'|Intl::msg} http://your-shaarli/?post=${url}&title=${title}&description=${sel}%0A%0A${via}&source=bookmarklet
{'http://anonym.to/? will mask the HTTP_REFERER, you can also use noreferrer to use HTML5 property'|Intl::msg}
{'Check this if you get disconnected often or if your IP address changes often.'|Intl::msg}
{'KrISS feed preferences'|Intl::msg}
{'Need update to be taken into consideration'|Intl::msg}
{'Not implemented yet'|Intl::msg}
{$zero=0}{* raintpl bug *}
{'KrISS feed menu preferences'|Intl::msg} {'You can order or remove elements in the menu. Set a position or leave empty if you do not want the element to appear in the menu.'|Intl::msg}
{'View as list'|Intl::msg}/{'View as expanded'|Intl::msg}
{'Hide feeds list'|Intl::msg}/{'Show feeds list'|Intl::msg}
{'Show all items'|Intl::msg}/{'Show unread items'|Intl::msg}
{'Show older first'|Intl::msg}/{'Show newer first'|Intl::msg}
{'Update all'|Intl::msg}/{'Update folder'|Intl::msg}/{'Update feed'|Intl::msg}
{'Mark all as read'|Intl::msg}/{'Mark folder as read'|Intl::msg}/{'Mark feed as read'|Intl::msg}
{'Mark all as unread'|Intl::msg}/{'Mark folder as unread'|Intl::msg}/{'Mark feed as unread'|Intl::msg}
{'Edit all'|Intl::msg}/{'Edit folder'|Intl::msg}/{'Edit feed'|Intl::msg}
{'Add a new feed'|Intl::msg}
{'Help'|Intl::msg}
{'Starred items'|Intl::msg}
{'KrISS feed paging menu preferences'|Intl::msg}
{'If you want to go previous and next item'|Intl::msg}
{'If you want to go previous and next page'|Intl::msg}
{'If you want to modify number of items by page'|Intl::msg}
{'If you want to add a mark as read button into paging'|Intl::msg}
{'Cron configuration'|Intl::msg} {$base}?update&cron={$kfccron} {'You can use &force to force update.'|Intl::msg}
{'To update every hour:'|Intl::msg}
0 * * * * wget "{$base}?update&cron={$kfccron}" -O /tmp/kf.cron
{'If you can not use wget, you may try php command line:'|Intl::msg}
0 * * * * php -f {$scriptfilename} update {$kfccron} > /tmp/kf.cron
{'If previous solutions do not work, try to create an update.php file into data directory containing:'|Intl::msg}
$url = "{$base}?update&cron={$kfccron}";
$options = array('http'=>array('method'=>'GET'));
$context = stream_context_create($options);
$data=file_get_contents($url,false,$context);
print($data);

{'Then set up your cron with:'|Intl::msg}
0 * * * * php -f {$scriptfilename|dirname}/data/update.php > /tmp/kf.cron
{'Do not forget to check permissions'|Intl::msg}