penny-arcade.com.php 565 B

123456789101112131415161718192021
  1. <?php
  2. return array(
  3. 'grabber' => array(
  4. '%/news/.*%' => array(
  5. 'test_url' => 'http://penny-arcade.com/news/post/2015/04/15/101-part-two',
  6. 'body' => array(
  7. '//*[@class="postBody"]/*',
  8. ),
  9. 'strip' => array(
  10. ),
  11. ),
  12. '%/comic/.*%' => array(
  13. 'test_url' => 'http://penny-arcade.com/comic/2015/04/15',
  14. 'body' => array(
  15. '//*[@id="comicFrame"]/a/img',
  16. ),
  17. 'strip' => array(
  18. ),
  19. ),
  20. ),
  21. );