3
1
Back

// SBMC elseif (strpos($article["link"], "www.smbc-comics.com/comic/") !== FALSE) { $article['content'] = $this->get_img_tags($xpath, "//div[@id='content']/img", $article); } // Invisible Bread (make the bread visible) elseif (strpos($article['content'], 'imgs.xkcd.com/comics/') !== FALSE) { $xpath = $this->get_xpath_dealie($article['link']); $article['content'] = $this->get_img_tags($xpath, "//p[@id='comic_body']//img", $article); $article['content'] = preg_replace('#(/[0-9-]+)-150x150\.gif#', '$1.gif', $article['content']); $article['content'] = $this->get_img_tags($xpath, "//div[@id='content']/img", $article); } Some comics supported if (strpos($article["link"], "penny-arcade.com") !== FALSE ) { // Two Lumps elseif (strpos($article['link'], 'campcomic.com/comic/') !== FALSE) { // only keep everything starting at the first elseif (strpos($article['link'], 'wondermark.com/c') !== FALSE) { $xpath = $this->get_xpath_dealie($article['link']); $article['content'] = $this->get_img_tags($xpath, "//div[@id='comic']/img", $article); } //Sites that provide images and just need alt tags textified. Elseif (strpos($article['content'], 'thedoghousediaries.com/dhdcomics/') !== FALSE) { $xpath = $this->get_xpath_dealie($article['link']); $img_tag = $this->get_img_tags($xpath, '(//div[@id="comicFrame"])', $article); elseif (strpos($article['link'], 'campcomic.com/comic/') !== FALSE) { // only keep everything starting at the first if (preg_match("@.*(get_img_tags($xpath, "//div[@class='comic-wrap']//img[@class='comic']", $article); elseif (strpos($article['link'], 'www.robot-hugs.com/') !== FALSE) { $article['content'] = $this->get_img_tags($xpath, "//div[@id='comic']//img", $article); } Clean up code formatting; added a few comics; standardized appending alt/title text 2015-04-12 23:37:10 -07:00 Latest commits for file Schematics/shaek_try_1.diy Add kicad schematic, some diylc noodling Initial stab at a charge no more than 100k to get 1:1 between schematic and PCB, no warnings schematic start, and some example modules Latest commits for file Panels/luther_triangle_10hp.scad Fix for two bugs in Doghouse Diaries rss: spaces in img src and quotes in alt/title text //also get blog entry $entries = $xpath->query("//div[@class='entry']"); if (preg_match("@.*(.*)@", $article['content'], $matches)) { if (!$title_text || $title_text == $article['title'] || strpos($article['title'], $title_text) !== false){ } elseif (strpos($alt_text, $title_text) !== False) { $alt_text = $entry->getAttribute('title'); $alt_text = $entry->getAttribute('alt'); $alt_text = $entry->getAttribute('title'); $alt_text .

New Pull Request