Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
5a3bc9e1
"ist-git@git.uwaterloo.ca:wcms/uw_ct_service.git" did not exist on "e43ead1901a3c93d1da70277e7bb49a2596d93e1"
Commit
5a3bc9e1
authored
14 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
#901798: Fix time off in SitemapParser.
parent
909f7b9e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+1
-0
1 addition, 0 deletions
CHANGELOG.txt
plugins/FeedsSitemapParser.inc
+4
-0
4 additions, 0 deletions
plugins/FeedsSitemapParser.inc
tests/feeds.test
+1
-0
1 addition, 0 deletions
tests/feeds.test
with
6 additions
and
0 deletions
CHANGELOG.txt
+
1
−
0
View file @
5a3bc9e1
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
--------------------------------
--------------------------------
- #901798 alex_b: Fix time off in SitemapParser.
- #885724 eliotttf: Avoid array_flip() on non scalars.
- #885724 eliotttf: Avoid array_flip() on non scalars.
- #885052 Hanno: Fix small typo in access rights.
- #885052 Hanno: Fix small typo in access rights.
- #863494 ekes, alex_b: Delete temporary enclosures file.
- #863494 ekes, alex_b: Delete temporary enclosures file.
...
...
This diff is collapsed.
Click to expand it.
plugins/FeedsSitemapParser.inc
+
4
−
0
View file @
5a3bc9e1
...
@@ -9,6 +9,9 @@ class FeedsSitemapParser extends FeedsParser {
...
@@ -9,6 +9,9 @@ class FeedsSitemapParser extends FeedsParser {
* Implementation of FeedsParser::parse().
* Implementation of FeedsParser::parse().
*/
*/
public
function
parse
(
FeedsImportBatch
$batch
,
FeedsSource
$source
)
{
public
function
parse
(
FeedsImportBatch
$batch
,
FeedsSource
$source
)
{
// Set time zone to GMT for parsing dates with strtotime().
$tz
=
date_default_timezone_get
();
date_default_timezone_set
(
'GMT'
);
// Yes, using a DOM parser is a bit inefficient, but will do for now
// Yes, using a DOM parser is a bit inefficient, but will do for now
$xml
=
new
SimpleXMLElement
(
$batch
->
getRaw
());
$xml
=
new
SimpleXMLElement
(
$batch
->
getRaw
());
foreach
(
$xml
->
url
as
$url
)
{
foreach
(
$xml
->
url
as
$url
)
{
...
@@ -24,6 +27,7 @@ class FeedsSitemapParser extends FeedsParser {
...
@@ -24,6 +27,7 @@ class FeedsSitemapParser extends FeedsParser {
}
}
$batch
->
addItem
(
$item
);
$batch
->
addItem
(
$item
);
}
}
date_default_timezone_set
(
$tz
);
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
tests/feeds.test
+
1
−
0
View file @
5a3bc9e1
...
@@ -982,6 +982,7 @@ class FeedsSitemapParserTestCase extends FeedsWebTestCase {
...
@@ -982,6 +982,7 @@ class FeedsSitemapParserTestCase extends FeedsWebTestCase {
$result
=
db_query
(
'SELECT * FROM {feeds_node_item} WHERE feed_nid = %d ORDER BY nid'
,
$nid
);
$result
=
db_query
(
'SELECT * FROM {feeds_node_item} WHERE feed_nid = %d ORDER BY nid'
,
$nid
);
// Check first item.
// Check first item.
date_default_timezone_set
(
'GMT'
);
$item
=
db_fetch_object
(
$result
);
$item
=
db_fetch_object
(
$result
);
$node
=
node_load
(
$item
->
nid
);
$node
=
node_load
(
$item
->
nid
);
$this
->
assertEqual
(
$node
->
title
,
'monthly'
,
'Feed item 1 changefreq is correct.'
);
$this
->
assertEqual
(
$node
->
title
,
'monthly'
,
'Feed item 1 changefreq is correct.'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment