Browse Source

comments

master
Denis Ryabov 11 years ago
parent
commit
96f0d63de2
  1. 5
      habr_twister.php

5
habr_twister.php

@ -10,7 +10,7 @@ if (!$rss) die('Cannot read rss');
// Initialise TwisterPost // Initialise TwisterPost
require_once 'twisterpost.php'; require_once 'twisterpost.php';
$twister = new TwisterPost('habr_ru'); $twister = new TwisterPost('habr_ru'); // set user name
// Set path to twisterd directory // Set path to twisterd directory
$twister->twisterPath = '.' . DIRECTORY_SEPARATOR . 'twister-win32-bundle' . DIRECTORY_SEPARATOR; $twister->twisterPath = '.' . DIRECTORY_SEPARATOR . 'twister-win32-bundle' . DIRECTORY_SEPARATOR;
@ -30,9 +30,10 @@ foreach ($rss->channel->item as $item) {
continue; continue;
} }
// short URL [-6 chars do matter] // shorten URL [-6 chars do matter]
$link = str_replace('habrahabr.ru', 'habr.ru', $link); $link = str_replace('habrahabr.ru', 'habr.ru', $link);
$link = rtrim($link, '/'); $link = rtrim($link, '/');
$msg = $twister->prettyPrint($title, $link, isset($item->category) ? $item->category : null); $msg = $twister->prettyPrint($title, $link, isset($item->category) ? $item->category : null);
if ($twister->postMessage($msg)) { if ($twister->postMessage($msg)) {

Loading…
Cancel
Save