Index: feedapi_node/tests/feedapi_node.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi_node/tests/Attic/feedapi_node.test,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 feedapi_node.test
--- feedapi_node/tests/feedapi_node.test 23 Sep 2009 14:14:03 -0000 1.1.2.3
+++ feedapi_node/tests/feedapi_node.test 25 Sep 2009 13:01:30 -0000
@@ -43,7 +43,7 @@ class FeedAPINodeTestsCase extends FeedA
// Create the feed node
// Make the URL unique. It's not impossible that someone add this feed URL to the DB prior.
- $feed_url = "http://novaak.net/test_feed.rss?". $this->randomName();
+ $feed_url = $this->testFileURL('test_feed.rss');
$edit = array(
'feedapi[feedapi_url]' => $feed_url,
);
@@ -137,7 +137,6 @@ class FeedAPINodeTestsCase extends FeedA
$this->assertText(t('Feed URL'), 'The block is showing up');
// Submit feed via simplified block
- $feed_url = "http://novaak.net/test_feed.rss?". $this->randomName();
$edit = array(
'url' => $feed_url,
);
@@ -192,7 +191,7 @@ class FeedAPINodeTestsCase extends FeedA
$this->create_type(array_pop($this->get_parsers()));
$settings = feedapi_get_settings($this->info->type);
$this->feedapi_user();
- $feed_url = "http://novaak.net/test_feed.php";
+ $feed_url = $this->testFileURL('test_feed.rss');
$edit = array(
'feedapi[feedapi_url]' => $feed_url,
);
@@ -204,8 +203,8 @@ class FeedAPINodeTestsCase extends FeedA
$notification = str_replace('', '', $notification);
$this->assertText($notification, 'The proper number of items were created');
- $title = $this->randomName(20);
- $feed_url_new = "http://novaak.net/test_feed.php?title=$title";
+ $title = 'xFgfsfdfsRDFGFes';
+ $feed_url_new = $this->testFileURL('test_feed_mod_title.rss');
$sticky = db_result(db_query("SELECT COUNT(*) FROM {node} WHERE sticky = 1"));
$this->assertTrue($sticky == 0, 'The sticky bit is off by default.');
Index: tests/feedapi_cron.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/tests/Attic/feedapi_cron.test,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 feedapi_cron.test
--- tests/feedapi_cron.test 18 Sep 2009 16:21:03 -0000 1.1.2.2
+++ tests/feedapi_cron.test 25 Sep 2009 13:01:31 -0000
@@ -26,13 +26,13 @@ class FeedAPICronTestsCase extends FeedA
$this->create_type(array_pop($this->get_parsers()));
$this->feedapi_user();
$feed_urls = array();
- $feed_urls[0] = "http://novaak.net/test_feed.rss?". $this->randomName();
+ $feed_urls[0] = $this->testFileURL('test_feed.rss');
$edit = array(
'feedapi[feedapi_url]' => $feed_urls[0],
'feedapi[refresh_time]' => FEEDAPI_CRON_ALWAYS_REFRESH,
);
$this->drupalPost('node/add/'. $this->info->type, $edit, 'Save');
- $feed_urls[1] = "http://novaak.net/test_feed_2.rss?". $this->randomName();
+ $feed_urls[1] = $this->testFileURL('test_feed2.rss');
$edit = array(
'feedapi[feedapi_url]' => $feed_urls[1],
'feedapi[refresh_time]' => FEEDAPI_CRON_NEVER_REFRESH,
Index: tests/feedapi_delete.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/tests/Attic/feedapi_delete.test,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 feedapi_delete.test
--- tests/feedapi_delete.test 20 Aug 2009 19:08:26 -0000 1.1.2.1
+++ tests/feedapi_delete.test 25 Sep 2009 13:01:31 -0000
@@ -24,7 +24,7 @@ class FeedAPIDeleteTestsCase extends Fee
foreach ($parsers as $parser) {
$this->create_type($parser);
$this->feedapi_user();
- $feed_url = "http://novaak.net/test_feed.rss?". $this->randomName();
+ $feed_url = $this->testFileURL('test_feed.rss');
$edit = array(
'feedapi[feedapi_url]' => $feed_url,
);
Index: tests/feedapi_revision.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/tests/Attic/feedapi_revision.test,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 feedapi_revision.test
--- tests/feedapi_revision.test 20 Aug 2009 19:08:26 -0000 1.1.2.1
+++ tests/feedapi_revision.test 25 Sep 2009 13:01:31 -0000
@@ -33,7 +33,7 @@ class FeedAPIRevisionTestsCase extends F
$settings = feedapi_get_settings($this->info->type);
// Create the initial revision, first submission
- $feed_url = "http://novaak.net/test_feed.rss?". $this->randomName();
+ $feed_url = $this->testFileURL('test_feed.rss');
$edit = array(
'feedapi[processors][feedapi_node][node_date]' => 'current',
'feedapi[feedapi_url]' => $feed_url,
Index: tests/feedapi_test_case.tinc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/tests/Attic/feedapi_test_case.tinc,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 feedapi_test_case.tinc
--- tests/feedapi_test_case.tinc 20 Aug 2009 19:08:26 -0000 1.1.2.1
+++ tests/feedapi_test_case.tinc 25 Sep 2009 13:01:31 -0000
@@ -68,4 +68,10 @@ class FeedAPITestCase extends DrupalWebT
}
return $parsers_ok;
}
+
+ protected function testFileURL($filename) {
+ global $base_url;
+ return $base_url .'/'. drupal_get_path('module', 'feedapi') .'/tests/files/'. $filename;
+ }
+
}
Index: tests/feedapi_upload.test
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/tests/Attic/feedapi_upload.test,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 feedapi_upload.test
--- tests/feedapi_upload.test 20 Aug 2009 19:08:26 -0000 1.1.2.1
+++ tests/feedapi_upload.test 25 Sep 2009 13:01:31 -0000
@@ -26,7 +26,6 @@ class FeedAPUploadTestsCase extends Feed
$this->create_type(array_pop($this->get_parsers()), TRUE);
$settings = feedapi_get_settings($this->info->type);
$this->feedapi_user();
- $feed_url = "http://novaak.net/test_feed.rss?". $this->randomName();
$edit = array(
'files[feedapi]' => drupal_get_path('module', 'feedapi'). '/tests/files/feed',
);
Index: tests/files/test_feed.rss
===================================================================
RCS file: tests/files/test_feed.rss
diff -N tests/files/test_feed.rss
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ tests/files/test_feed.rss 25 Sep 2009 13:01:31 -0000
@@ -0,0 +1,127 @@
+
+
+
+ Radiovaticana.org
+ http://www.oecumene.radiovaticana.org/ung/index.asp
+ Vatik�ni R�di� - A P�pa �s az Egyh�z hangja p�rbesz�dben a vil�ggal
+ Copyright 2005 - Vatican Radio
+ hu
+ hun@vatiradio.va
+ webteam@vaticanradio.org
+ $dataoggi$
+ Webteam
+ 180
+
+ http://www.radiovaticana.org/RSS/logo_RSS_fre.jpg
+ Radio Vatican
+ http://www.oecumene.radiovaticana.org/ung/index.asp
+ 180
+ 180
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161436
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161436
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:12:41 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161433
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161433
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 17:10:16 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161429
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161429
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 17:7:39 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161427
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161427
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:3:41 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161426
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161426
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:1:55 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161422
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161422
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 16:58:46 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161421
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161421
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 16:57:23 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161420
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161420
+
+
+ webteam@vaticanradio.org
+ Vatican Documents
+ Tue, 16 ott 2007 16:56:4 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161198
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161198
+
+
+ webteam@vaticanradio.org
+ Justice and Peace
+ Mon, 15 ott 2007 17:3:37 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161197
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161197
+
+
+ webteam@vaticanradio.org
+ Politics
+
+ Mon, 15 ott 2007 16:59:36 GMT
+
+
+
+
\ No newline at end of file
Index: tests/files/test_feed_2.rss
===================================================================
RCS file: tests/files/test_feed_2.rss
diff -N tests/files/test_feed_2.rss
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ tests/files/test_feed_2.rss 25 Sep 2009 13:01:31 -0000
@@ -0,0 +1,3 @@
+BBC News | South Asia | World Editionhttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/default.stmGet the latest BBC News from South Asia: breaking news, features, analysis and debate plus audio and video coverage from across the South Asia region.en-gbFri, 19 Jun 2009 10:08:57 GMTCopyright: (C) British Broadcasting Corporation, see http://news.bbc.co.uk/2/hi/help/rss/4498287.stm for terms and conditions of reusehttp://www.bbc.co.uk/syndication/15BBC Newshttp://news.bbc.co.uk/nol/shared/img/bbc_news_120x60.gifhttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/default.stmPakistani offensive 'nears end'Pakistan's military offensive against Taliban militants in the Swat valley is nearly over, the defence minister says.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8108724.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8108724.stmFri, 19 Jun 2009 09:57:36 GMTSouth AsiaIndian forces close in on MaoistsIndian security forces are approaching the area of West Bengal state where Maoist rebels have seized control, officials say. http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8108552.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8108552.stmFri, 19 Jun 2009 06:53:58 GMTSouth AsiaKashmir shuts down over deathsA shutdown to protest against the alleged murder of two young women has once again hit Indian-administered Kashmir.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8108771.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8108771.stmFri, 19 Jun 2009 09:26:09 GMTSouth AsiaBangladesh adopts new time rulesThe Bangladeshi government is introducing daylight saving time in an effort to address power shortages in the country.http://news.bbc.co.uk/go/rss/-/2/hi/business/8103503.stmhttp://news.bbc.co.uk/1/hi/business/8103503.stmFri, 19 Jun 2009 07:12:13 GMTBusinessAir raid 'kills nine' in PakistanAt least nine people are killed in a suspected US airstrike on militant targets in Pakistan's tribal region of South Waziristan, officials say.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8106686.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8106686.stmThu, 18 Jun 2009 10:55:16 GMTSouth AsiaJolie and Pitt donate to PakistanHollywood couple Angelina Jolie and Brad Pitt donate a million dollars to help displaced Pakistanis, the UN says.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8108543.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8108543.stmFri, 19 Jun 2009 04:52:40 GMTSouth AsiaUS 'to improve' Afghan trainingA US report on airstrikes in Afghanistan calls for better training for US forces to reduce civilian casualties, officials say.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8106464.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8106464.stmThu, 18 Jun 2009 10:43:26 GMTSouth AsiaClashes flare at Maoist strongholdParamilitary troops are called in after Maoist rebels take control of part of the eastern Indian state of West Bengal.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8106388.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8106388.stmThu, 18 Jun 2009 13:48:38 GMTSouth AsiaLumley joins Gurkha celebrationsActress Joanna Lumley joins thousands of people celebrating the Gurkhas being given the freedom of their Kent base town.http://news.bbc.co.uk/go/rss/-/2/hi/uk_news/england/kent/8107081.stmhttp://news.bbc.co.uk/1/hi/england/kent/8107081.stmThu, 18 Jun 2009 12:15:38 GMTKentLook to the future - Punjab trains tech-savvy policePolice in the Indian state of Punjab receive a 21st Century computerised makeover.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8105905.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8105905.stmWed, 17 Jun 2009 16:42:48 GMTSouth AsiaAfridi steers Pakistan into finalShahid Afridi puts in a superb display to help Pakistan beat favourites South Africa and reach the World Twenty20 final.http://news.bbc.co.uk/go/rss/-/sport2/hi/cricket/8104338.stmhttp://news.bbc.co.uk/sport1/hi/cricket/8104338.stmThu, 18 Jun 2009 19:51:08 GMTCricketCoach Buchanan sacked by IPL teamProspective England coach John Buchanan has been sacked by Indian Premier League team Kolkata Knight Riders.http://news.bbc.co.uk/go/rss/-/sport2/hi/cricket/8106674.stmhttp://news.bbc.co.uk/sport1/hi/cricket/8106674.stmThu, 18 Jun 2009 09:36:53 GMTCricketNo respiteSri Lanka's war is over but threats to journalists remainhttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8107869.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8107869.stmThu, 18 Jun 2009 22:58:56 GMTSouth AsiaIn picturesFamous Delhi coffee house battles to stay openhttp://news.bbc.co.uk/go/rss/-/2/hi/in_pictures/8106639.stmhttp://news.bbc.co.uk/1/hi/in_pictures/8106639.stmThu, 18 Jun 2009 10:49:28 GMTIn PicturesRollercoaster rideBBC reporter looks back on four years in Pakistan
+http://news.bbc.co.uk/go/rss/-/2/hi/programmes/from_our_own_correspondent/8106833.stmhttp://news.bbc.co.uk/1/hi/programmes/from_our_own_correspondent/8106833.stmThu, 18 Jun 2009 12:44:11 GMTFrom Our Own CorrespondentRace problem?Indians speak out on racism in Australiahttp://news.bbc.co.uk/go/rss/-/2/hi/asia-pacific/8100956.stmhttp://news.bbc.co.uk/1/hi/world/asia-pacific/8100956.stmWed, 17 Jun 2009 03:41:45 GMTAsia-PacificFar from homeNo hope of a swift return for Pakistan displacedhttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8101592.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8101592.stmTue, 16 Jun 2009 01:52:39 GMTSouth AsiaHousing hopeMumbai drives to build more affordable housinghttp://news.bbc.co.uk/go/rss/-/2/hi/business/8100661.stmhttp://news.bbc.co.uk/1/hi/business/8100661.stmMon, 15 Jun 2009 23:47:58 GMTBusinessIndia bans mobiles without 'code'India's Bharti Airtel resumes talks with South Africa's MTN aimed at forming the world's third largest mobile phone firm.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8106762.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8106762.stmThu, 18 Jun 2009 11:01:49 GMTSouth AsiaNew call for S Lanka rights probeThe Sri Lankan government faces renewed criticism over human rights, with two groups doubting its will to enforce the law.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8107325.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8107325.stmThu, 18 Jun 2009 12:46:44 GMTSouth AsiaIndian inflation turns negativeInflation in India has turned negative for the first time in more than 30 years, official figures show.http://news.bbc.co.uk/go/rss/-/2/hi/business/8106534.stmhttp://news.bbc.co.uk/1/hi/business/8106534.stmThu, 18 Jun 2009 08:23:58 GMTBusinessKarachi suffers major power cutEngineers in the Pakistani city of Karachi are working to restore power supplies after a blackout affects millions.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8107565.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8107565.stmThu, 18 Jun 2009 13:37:19 GMTSouth AsiaStowaway on UK army busAn illegal immigrant is found inside Sandhurst military academy after stowing away on an Army coach travelling from Germany.http://news.bbc.co.uk/go/rss/-/2/hi/uk_news/8106302.stmhttp://news.bbc.co.uk/1/hi/uk/8106302.stmThu, 18 Jun 2009 01:27:32 GMTUK'Cricket attacker' held in LahorePolice in Pakistan arrest one of seven men suspected of attacking Sri Lanka's cricket team in Lahore in March, officials say.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8105588.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8105588.stmWed, 17 Jun 2009 15:04:49 GMTSouth AsiaTamil protest ends after 73 daysProtests which saw thousands of people demonstrate over the plight of Tamils in Sri Lanka end after 73 days in London.http://news.bbc.co.uk/go/rss/-/2/hi/uk_news/england/london/8105879.stmhttp://news.bbc.co.uk/1/hi/england/london/8105879.stmWed, 17 Jun 2009 18:19:03 GMTLondonEU gives $100m in aid to PakistanThe EU gives $100m to help those displaced by fighting in Pakistan in return for greater efforts against "terrorism".http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8104502.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8104502.stmWed, 17 Jun 2009 16:18:56 GMTSouth AsiaDanish troops die in AfghanistanThree Danish soldiers are killed by a roadside bomb in the Afghan province of Helmand, military reports say.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8105554.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8105554.stmWed, 17 Jun 2009 14:45:04 GMTSouth AsiaAl-Jazeera Afghan staff set freeTwo journalists for Arabic TV network al-Jazeera are freed two three days after being arrested by Afghan intelligence agents.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8104702.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8104702.stmWed, 17 Jun 2009 13:34:01 GMTSouth AsiaAir India rescue package likelyThe Indian government is likely to bail-out its struggling national carrier Air India, the aviation minister says.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8104767.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8104767.stmWed, 17 Jun 2009 10:03:52 GMTSouth AsiaIndia Maoist violence escalatesThree more workers of the ruling Communist Party are killed by suspected Maoist rebels in West Bengal state, Indian police say.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8104395.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8104395.stmWed, 17 Jun 2009 05:52:37 GMTSouth AsiaPakistan army readies for attackTroops amass around Pakistan's tribal district of South Waziristan in readiness for an offensive against the Taliban, officials say. http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8103479.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8103479.stmTue, 16 Jun 2009 16:32:16 GMTSouth AsiaAfghan election campaign startsCampaigning begins for Afghanistan's August presidential election which pits Hamid Karzai against 40 challengers.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8102805.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8102805.stmTue, 16 Jun 2009 12:52:12 GMTSouth AsiaIndian factory output up in AprilIndia's industrial output rose unexpectedly in April, figures show, fuelling hopes that a recovery may be in sight. http://news.bbc.co.uk/go/rss/-/2/hi/business/8097086.stmhttp://news.bbc.co.uk/1/hi/business/8097086.stmFri, 12 Jun 2009 11:25:46 GMTBusinessSatyam shares rise after profitShares in Satyam, the fraud-hit Indian IT firm, rise for a third consecutive day after figures show it remains in profit.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8094859.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8094859.stmThu, 11 Jun 2009 11:46:13 GMTSouth AsiaElectric dreams in KabulArrival of electricity transforms life in Kabulhttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8097865.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8097865.stmSun, 14 Jun 2009 22:53:58 GMTSouth AsiaIn pictures: Pakistan's displacedthe BBC's M Ilyas Khan has just returned from north-west Pakistan where he visited refugee camps housing those displaced by fighting in the Swat valley.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8095947.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8095947.stmFri, 12 Jun 2009 00:29:24 GMTSouth AsiaSecuring Pakistan's weaponsMark Urban on US efforts to secure Pakistan's weaponshttp://www.bbc.co.uk/go/rss/-/blogs/newsnight/markurban/2009/06/pakistans_loose_nukes.htmlhttp://www.bbc.co.uk/blogs/newsnight/markurban/2009/06/pakistans_loose_nukes.htmlThu, 11 Jun 2009 18:37:38 GMTSpecial ReportsIn pictures: Child workersA new UN report released on World Day Against Child Labour warns that the problem is getting worse amid the worldwide economic downturn.http://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8096944.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8096944.stmFri, 12 Jun 2009 11:39:26 GMTSouth AsiaKiss and PatelThe singles club in which all members share a surname
+http://news.bbc.co.uk/go/rss/-/2/hi/uk_news/magazine/8095032.stmhttp://news.bbc.co.uk/1/hi/magazine/8095032.stmThu, 11 Jun 2009 13:43:21 GMTMagazinePeace havenWelcome to a quiet corner in Pakistan's troubled northwesthttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8083048.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8083048.stmWed, 10 Jun 2009 23:45:09 GMTSouth AsiaHelmand at homeHow UK army trains for Afghanistan in rural Englandhttp://news.bbc.co.uk/go/rss/-/2/hi/uk_news/8094396.stmhttp://news.bbc.co.uk/1/hi/uk/8094396.stmThu, 11 Jun 2009 02:03:07 GMTUKAfghanistan's looted treasuresAfghanistan retrieves its looted treasureshttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8093573.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8093573.stmWed, 10 Jun 2009 17:25:02 GMTSouth AsiaIndia's dynastic politicsDynastic politics is still widespread in Indian lifehttp://news.bbc.co.uk/go/rss/-/2/hi/south_asia/8089734.stmhttp://news.bbc.co.uk/1/hi/world/south_asia/8089734.stmWed, 10 Jun 2009 00:17:38 GMTSouth Asia
\ No newline at end of file
Index: tests/files/test_feed_mod_title.rss
===================================================================
RCS file: tests/files/test_feed_mod_title.rss
diff -N tests/files/test_feed_mod_title.rss
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ tests/files/test_feed_mod_title.rss 25 Sep 2009 13:01:31 -0000
@@ -0,0 +1,127 @@
+
+
+
+ Radiovaticana.org
+ http://www.oecumene.radiovaticana.org/ung/index.asp
+ Vatik�ni R�di� - A P�pa �s az Egyh�z hangja p�rbesz�dben a vil�ggal
+ Copyright 2005 - Vatican Radio
+ hu
+ hun@vatiradio.va
+ webteam@vaticanradio.org
+ $dataoggi$
+ Webteam
+ 180
+
+ http://www.radiovaticana.org/RSS/logo_RSS_fre.jpg
+ Radio Vatican
+ http://www.oecumene.radiovaticana.org/ung/index.asp
+ 180
+ 180
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161436
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161436
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:12:41 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161433
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161433
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 17:10:16 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161429
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161429
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 17:7:39 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161427
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161427
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:3:41 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161426
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161426
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 17:1:55 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161422
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161422
+
+
+ webteam@vaticanradio.org
+ Culture and Society
+
+ Tue, 16 ott 2007 16:58:46 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161421
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161421
+
+
+ webteam@vaticanradio.org
+ Church
+ Tue, 16 ott 2007 16:57:23 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161420
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161420
+
+
+ webteam@vaticanradio.org
+ Vatican Documents
+ Tue, 16 ott 2007 16:56:4 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161198
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161198
+
+
+ webteam@vaticanradio.org
+ Justice and Peace
+ Mon, 15 ott 2007 17:3:37 GMT
+
+
+
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161197
+ http://www.oecumene.radiovaticana.org/UNG/Articolo.asp?c=161197
+
+
+ webteam@vaticanradio.org
+ Politics
+
+ Mon, 15 ott 2007 16:59:36 GMT
+
+
+
+
\ No newline at end of file