From: Michael Wallner Date: Mon, 12 Sep 2005 12:36:51 +0000 (+0000) Subject: - ws X-Git-Tag: RELEASE_0_14_0~37 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=97e6c19380c21fd83b04fe9f4e30fa49e78a7159 - ws --- diff --git a/docs/examples/Simple_Feed_Aggregator.php b/docs/examples/Simple_Feed_Aggregator.php index f82e316..fd7ade4 100644 --- a/docs/examples/Simple_Feed_Aggregator.php +++ b/docs/examples/Simple_Feed_Aggregator.php @@ -30,8 +30,8 @@ class FeedAggregator public function addFeed($url) { $r = $this->setupRequest($url); - $r->send(); - $this->handleResponse($r); + $r->send(); + $this->handleResponse($r); } public function addFeeds($urls) @@ -65,11 +65,11 @@ class FeedAggregator protected function saveFeed($file, $contents) { - if (file_put_contents($this->directory .'/'. $file .'.xml', $contents)) { - $this->feeds[$file] = time(); - } else { - throw new Exception("Could not save feed contents to $file.xml"); - } + if (file_put_contents($this->directory .'/'. $file .'.xml', $contents)) { + $this->feeds[$file] = time(); + } else { + throw new Exception("Could not save feed contents to $file.xml"); + } } protected function loadFeed($file) @@ -87,8 +87,8 @@ class FeedAggregator protected function setupRequest($url) { - $r = new HttpRequest($url); - $r->setOptions(array('redirect' => true)); + $r = new HttpRequest($url); + $r->setOptions(array('redirect' => true)); $file = $this->url2name($url); @@ -102,14 +102,14 @@ class FeedAggregator protected function handleResponse(HttpRequest $r) { if ($r->getResponseCode() != 304) { - if ($r->getResponseCode() != 200) { - throw new Exception("Unexpected response code ". $r->getResponseCode()); - } - if (!strlen($body = $r->getResponseBody())) { - throw new Exception("Received empty feed from ". $r->getUrl()); - } - $this->saveFeed($file, $body); - } + if ($r->getResponseCode() != 200) { + throw new Exception("Unexpected response code ". $r->getResponseCode()); + } + if (!strlen($body = $r->getResponseBody())) { + throw new Exception("Received empty feed from ". $r->getUrl()); + } + $this->saveFeed($file, $body); + } } } ?> diff --git a/docs/examples/extract.php b/docs/examples/extract.php index 32aa173..466c544 100644 --- a/docs/examples/extract.php +++ b/docs/examples/extract.php @@ -1,4 +1,7 @@ )/s', file_get_contents($_SERVER['argv'][1]), $matches)) { for ($i = 0; $i < count($matches[0]); $i++) { diff --git a/docs/examples/tutorial.txt b/docs/examples/tutorial.txt index 6dcae5a..0a629ee 100644 --- a/docs/examples/tutorial.txt +++ b/docs/examples/tutorial.txt @@ -255,8 +255,8 @@ class FeedAggregator public function addFeed($url) { $r = $this->setupRequest($url); - $r->send(); - $this->handleResponse($r); + $r->send(); + $this->handleResponse($r); } public function addFeeds($urls) @@ -290,11 +290,11 @@ class FeedAggregator protected function saveFeed($file, $contents) { - if (file_put_contents($this->directory .'/'. $file .'.xml', $contents)) { - $this->feeds[$file] = time(); - } else { - throw new Exception("Could not save feed contents to $file.xml"); - } + if (file_put_contents($this->directory .'/'. $file .'.xml', $contents)) { + $this->feeds[$file] = time(); + } else { + throw new Exception("Could not save feed contents to $file.xml"); + } } protected function loadFeed($file) @@ -312,8 +312,8 @@ class FeedAggregator protected function setupRequest($url) { - $r = new HttpRequest($url); - $r->setOptions(array('redirect' => true)); + $r = new HttpRequest($url); + $r->setOptions(array('redirect' => true)); $file = $this->url2name($url); @@ -327,14 +327,14 @@ class FeedAggregator protected function handleResponse(HttpRequest $r) { if ($r->getResponseCode() != 304) { - if ($r->getResponseCode() != 200) { - throw new Exception("Unexpected response code ". $r->getResponseCode()); - } - if (!strlen($body = $r->getResponseBody())) { - throw new Exception("Received empty feed from ". $r->getUrl()); - } - $this->saveFeed($file, $body); - } + if ($r->getResponseCode() != 200) { + throw new Exception("Unexpected response code ". $r->getResponseCode()); + } + if (!strlen($body = $r->getResponseBody())) { + throw new Exception("Received empty feed from ". $r->getUrl()); + } + $this->saveFeed($file, $body); + } } } ?>