Skip to content
Snippets Groups Projects
Commit 5ab19479 authored by Alex Barth's avatar Alex Barth
Browse files

Clean up newlines at end of files.

parent 073c66a2
No related branches found
No related tags found
No related merge requests found
Showing
with 19 additions and 20 deletions
......@@ -166,4 +166,4 @@ Glossary
========
See "Feeds glossary":
http://drupal.org/node/622710
\ No newline at end of file
http://drupal.org/node/622710
......@@ -4,4 +4,4 @@ name = "Feeds Defaults"
package = "Feeds"
description = "Get started: useful default configurations for Feeds: RSS/Atom aggregation, OPML import, node import and user import."
project = "Feeds"
dependencies[] = "feeds"
\ No newline at end of file
dependencies[] = "feeds"
......@@ -33,4 +33,3 @@ function feeds_defaults_install() {
function feeds_defaults_uninstall() {
drupal_uninstall_schema('feeds_defaults');
}
......@@ -84,4 +84,4 @@ div.feeds-container.plain {
/* Mapping form. */
#center table form {
margin: 0;
}
\ No newline at end of file
}
......@@ -3,4 +3,4 @@ name = Feeds Admin UI
description = Administrative UI for Feeds module.
package = Feeds
dependencies[] = feeds
core = 6.x
\ No newline at end of file
core = 6.x
......@@ -117,4 +117,4 @@ function feed_ui_title($importer) {
*/
function feed_ui_clone_title($importer) {
return t('Clone !importer', array('!importer' => $importer->config['name']));
}
\ No newline at end of file
}
......@@ -235,4 +235,4 @@ class FeedsDataHandler extends DataHandler {
public function save(&$record, $update) {
throw new Exception(t('Not implemented.'));
}
}
\ No newline at end of file
}
......@@ -293,4 +293,4 @@ function feeds_format_expire($timestamp) {
return t('Never');
}
return t('after !time', array('!time' => format_interval($timestamp)));
}
\ No newline at end of file
}
......@@ -257,4 +257,4 @@ class ParserCSV {
}
return $rows;
}
}
\ No newline at end of file
}
......@@ -248,4 +248,4 @@ function http_request_use_curl() {
*/
function http_request_clear_cache($url) {
cache_clear_all('feeds_http_download_'. md5($url), 'cache');
}
\ No newline at end of file
}
......@@ -44,4 +44,4 @@ function opml_parser_parse($raw) {
}
$feeds['items'] = $items;
return $feeds;
}
\ No newline at end of file
}
......@@ -56,4 +56,4 @@ function content_feeds_set_target($node, $target, $value) {
}
$node->$target = $field;
}
\ No newline at end of file
}
......@@ -61,4 +61,4 @@ function date_feeds_set_target($node, $target, $feed_element) {
}
}
$feed_element->buildDateField($node, $field_name);
}
\ No newline at end of file
}
......@@ -76,4 +76,4 @@ function filefield_feeds_set_target($node, $field_name, $value) {
}
}
$node->$field_name = $items;
}
\ No newline at end of file
}
......@@ -113,4 +113,4 @@ class FeedsCSVParser extends FeedsParser {
);
return $form;
}
}
\ No newline at end of file
}
......@@ -220,4 +220,4 @@ class FeedsFeedNodeProcessor extends FeedsProcessor {
throw new Exception(t('Content type to be created is not a valid Feed content type.'));
}
}
}
\ No newline at end of file
}
......@@ -92,4 +92,4 @@ class FeedsFileFetcher extends FeedsFetcher {
form_set_error('feeds][source', t('File needs to point to a file in your Drupal file system path.'));
}
}
}
\ No newline at end of file
}
......@@ -36,4 +36,4 @@ class FeedsOPMLParser extends FeedsParser {
),
);
}
}
\ No newline at end of file
}
......@@ -83,4 +83,4 @@ class FeedsMissingPlugin extends FeedsPlugin {
public function menuItem() {
return array();
}
}
\ No newline at end of file
}
......@@ -245,4 +245,4 @@ abstract class FeedsProcessor extends FeedsPlugin {
}
return $targets;
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment