blob: 98d384e6a40e523bb348560914c67d076414b973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
return array(
'grabber' => array(
'%^/news.*%' => array(
'test_url' => 'http://www.adventuregamers.com/news/view/31079',
'body' => array(
'//div[@class="bodytext"]',
)
),
'%^/videos.*%' => array(
'test_url' => 'http://www.adventuregamers.com/videos/view/31056',
'body' => array(
'//iframe',
)
),
'%^/articles.*%' => array(
'test_url' => 'http://www.adventuregamers.com/articles/view/31049',
'body' => array(
'//div[@class="cleft"]',
)
)
),
);
|