endi_feed 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +14 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +52 -0
- data/Rakefile +14 -0
- data/bin/endifeed +9 -0
- data/endi_feed.gemspec +31 -0
- data/lib/endi_feed.rb +16 -0
- data/lib/endi_feed/cli.rb +55 -0
- data/lib/endi_feed/news.rb +105 -0
- data/lib/endi_feed/util.rb +38 -0
- data/lib/endi_feed/version.rb +3 -0
- data/spec/fixtures/noticias.xml +2 -0
- data/spec/fixtures/sample_scrape.html +41 -0
- data/spec/lib/endi_feed_spec.rb +22 -0
- data/spec/lib/news_spec.rb +51 -0
- data/spec/lib/util_spec.rb +36 -0
- data/spec/spec_helper.rb +17 -0
- metadata +207 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
endi_feed
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-1.9.3-p448
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Jonah Ruiz
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
LinkShrink [](https://travis-ci.org/jonahoffline/endi_feed) [](http://badge.fury.io/rb/endi_feed) [](https://gemnasium.com/jonahoffline/endi_feed) [](https://codeclimate.com/github/jonahoffline/endi_feed)
|
2
|
+
=================
|
3
|
+
|
4
|
+
Endi is a Ruby Gem and command-line application for getting the latest news from endi.com / El Nuevo Dia Newspaper
|
5
|
+
|
6
|
+
Installation
|
7
|
+
---------------------
|
8
|
+
|
9
|
+
$ gem install endi_feed
|
10
|
+
|
11
|
+
## Usage ##
|
12
|
+
|
13
|
+
Ruby:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'endi_feed'
|
17
|
+
|
18
|
+
EndiFeed.get_news 2
|
19
|
+
=> ["El Nuevo Dia : Noticias (http://www.elnuevodia.com/)", "Última actualización: 10:34:00 PM",
|
20
|
+
"1. Trío asalta concesionario de autos en Moca (07/03/13) - http://goo.gl/OSq8K",
|
21
|
+
"2. Listo Barranquitas para celebración del 4 de julio (07/03/13) - http://goo.gl/VJbmh"]
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
In your terminal:
|
26
|
+
|
27
|
+
```console
|
28
|
+
$ endifeed --news 5
|
29
|
+
El Nuevo Dia : Noticias (http://www.elnuevodia.com/)
|
30
|
+
Última actualización: 10:34:00 PM
|
31
|
+
1. Trío asalta concesionario de autos en Moca (07/03/13) - http://goo.gl/OSq8K
|
32
|
+
2. Listo Barranquitas para celebración del 4 de julio (07/03/13) - http://goo.gl/VJbmh
|
33
|
+
3. Alguaciles federales detienen uno de los más buscados (07/03/13) - http://goo.gl/pq09S
|
34
|
+
4. Identifican a mujer que se lanzó del puente Julia de Burgos (07/03/13) - http://goo.gl/ljU0W
|
35
|
+
5. Hallan cadáver de hombre desaparecido en Carolina (07/03/13) - http://goo.gl/9CqcH
|
36
|
+
```
|
37
|
+
|
38
|
+
### Command-Line Options ###
|
39
|
+
|
40
|
+
* -n, --news [total] - total of news to fetch
|
41
|
+
* -h, --help - show help message
|
42
|
+
|
43
|
+
## Author
|
44
|
+
* [Jonah Ruiz](http://www.pixelhipsters.com)
|
45
|
+
|
46
|
+
## Contributing
|
47
|
+
|
48
|
+
1. Fork it
|
49
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
50
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
51
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
52
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rspec/core/rake_task'
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new
|
5
|
+
|
6
|
+
task :default => :spec
|
7
|
+
task :test => :spec
|
8
|
+
|
9
|
+
desc 'Run all specs and generate simplecov report'
|
10
|
+
task :cov do |t|
|
11
|
+
ENV['COVERAGE'] = 'true'
|
12
|
+
Rake::Task['spec'].execute
|
13
|
+
`open coverage/index.html`
|
14
|
+
end
|
data/bin/endifeed
ADDED
data/endi_feed.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'endi_feed/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'endi_feed'
|
8
|
+
spec.version = EndiFeed::VERSION
|
9
|
+
spec.authors = ['Jonah Ruiz']
|
10
|
+
spec.email = ['jonah@pixelhipsters.com']
|
11
|
+
spec.description = %q{EndiFeed is a Ruby Gem for getting the latest news from endi.com}
|
12
|
+
spec.summary = %q{EndiFeed is a Ruby Gem for getting the latest news from endi.com / El Nuevo Dia Newspaper}
|
13
|
+
spec.homepage = 'https://github.com/jonahoffline/endi_feed'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
spec.required_ruby_version = '>= 1.9.3'
|
21
|
+
|
22
|
+
spec.add_dependency 'link_shrink', '~> 0.0.1'
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
25
|
+
spec.add_development_dependency 'rake'
|
26
|
+
spec.add_development_dependency 'rspec', '~> 2.13.0'
|
27
|
+
spec.add_development_dependency 'webmock', '~> 1.12.3'
|
28
|
+
spec.add_development_dependency 'simplecov', '~> 0.7.1'
|
29
|
+
spec.add_development_dependency 'simplecov-gem-adapter', '~> 1.0.1'
|
30
|
+
spec.add_development_dependency 'coveralls', '~> 0.6.7'
|
31
|
+
end
|
data/lib/endi_feed.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'endi_feed/version'
|
3
|
+
require 'endi_feed/util'
|
4
|
+
require 'endi_feed/news'
|
5
|
+
require 'endi_feed/cli'
|
6
|
+
|
7
|
+
# @author Jonah Ruiz <jonah@pixelhipsters.com>
|
8
|
+
# Contains modules and classes to parse the news feed
|
9
|
+
# from endi.com / El Nuevo Dia Newspaper
|
10
|
+
module EndiFeed
|
11
|
+
# Creates an EndiFeed::News instance and calls :get_headlines
|
12
|
+
# @return [Array<String>] news headlines
|
13
|
+
def self.get_news(total = 25)
|
14
|
+
EndiFeed::News.new.get_headlines(total)
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'optparse'
|
3
|
+
|
4
|
+
module EndiFeed
|
5
|
+
# @author Jonah Ruiz <jonah@pixelhipsters.com>
|
6
|
+
# A Simple class for the executable version of the gem
|
7
|
+
class CLI
|
8
|
+
|
9
|
+
# @param args [Array<String>] The command-line arguments
|
10
|
+
def initialize(args)
|
11
|
+
@args = args
|
12
|
+
end
|
13
|
+
|
14
|
+
# Configures the arguments for the command
|
15
|
+
# @param opts [OptionParser]
|
16
|
+
def set_options(opts)
|
17
|
+
@total_news = 25
|
18
|
+
opts.version = EndiFeed::VERSION
|
19
|
+
opts.banner = <<MSG
|
20
|
+
Usage: endifeed [options] [arguments]
|
21
|
+
Description:
|
22
|
+
EndiFeed, get the latest news from endi.com / El Nuevo Dia Newspaper.
|
23
|
+
|
24
|
+
Options:
|
25
|
+
MSG
|
26
|
+
opts.set_program_name 'EndiFeed'
|
27
|
+
opts.on('-n [total]', Integer, '--news', 'total of news to fetch') do |total|
|
28
|
+
@total_news = total
|
29
|
+
end
|
30
|
+
|
31
|
+
opts.on_tail('-v', '--version', 'display the version of EndiFeed') do
|
32
|
+
puts opts.version
|
33
|
+
exit
|
34
|
+
end
|
35
|
+
|
36
|
+
opts.on_tail('-h', '--help', 'print this help') do
|
37
|
+
puts opts.help
|
38
|
+
exit
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
# Parses the command-line arguments and runs the executable
|
43
|
+
# @return [String] The short url or argument passed
|
44
|
+
def parse
|
45
|
+
opts = OptionParser.new(&method(:set_options))
|
46
|
+
opts.parse!(@args)
|
47
|
+
get_news
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
def get_news
|
52
|
+
EndiFeed.get_news(@total_news)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'link_shrink'
|
3
|
+
|
4
|
+
module EndiFeed
|
5
|
+
# This class cleans up and formats XML/RSS feed.
|
6
|
+
class News
|
7
|
+
include EndiFeed::Util
|
8
|
+
|
9
|
+
# Loads initial data
|
10
|
+
# sets @headlines ivar
|
11
|
+
# and calls :news_feed, :channel methods
|
12
|
+
#
|
13
|
+
# @see #news_feed
|
14
|
+
# @see #channel
|
15
|
+
def initialize
|
16
|
+
@headlines = []
|
17
|
+
news_feed
|
18
|
+
channel
|
19
|
+
end
|
20
|
+
|
21
|
+
# Factory method that gets the news
|
22
|
+
#
|
23
|
+
# @see EndiFeed::Util.convert_date
|
24
|
+
# @see #format_header_text
|
25
|
+
# @see #process_news
|
26
|
+
# @see #format_headline
|
27
|
+
#
|
28
|
+
# @param total [Integer] total of news to fetch
|
29
|
+
# @return [Array<String>] news or an error message
|
30
|
+
def get_headlines(total)
|
31
|
+
process_news(total)
|
32
|
+
format_header_text(@headlines)
|
33
|
+
rescue
|
34
|
+
'Problem retrieving news headlines.'
|
35
|
+
end
|
36
|
+
|
37
|
+
# Loads news into instance variable
|
38
|
+
#
|
39
|
+
# @see EndiFeed::Util.parse_feed
|
40
|
+
# @return [RSS] parsed XML feed or nil
|
41
|
+
def news_feed
|
42
|
+
@news_feed ||= parse_feed
|
43
|
+
end
|
44
|
+
|
45
|
+
# Convenience method for feed channel
|
46
|
+
def channel
|
47
|
+
@channel ||= @news_feed.channel
|
48
|
+
end
|
49
|
+
|
50
|
+
# Convenience method for items in feed
|
51
|
+
def items
|
52
|
+
@news_feed.items
|
53
|
+
end
|
54
|
+
|
55
|
+
# Returns the title from the feed
|
56
|
+
# @return [String] newspaper site title
|
57
|
+
def title
|
58
|
+
@channel.title
|
59
|
+
end
|
60
|
+
|
61
|
+
# Returns the site's url from the feed
|
62
|
+
# @return [String] newspaper site URL
|
63
|
+
def site_url
|
64
|
+
@channel.link
|
65
|
+
end
|
66
|
+
|
67
|
+
# Returns the last update time of the feed
|
68
|
+
# @return [String] last update time
|
69
|
+
def last_update
|
70
|
+
convert_time(@channel.pubDate)
|
71
|
+
end
|
72
|
+
|
73
|
+
# Applies formatting to header text
|
74
|
+
# @return [Array<String>] formatted header text
|
75
|
+
def format_header_text(headlines)
|
76
|
+
sub_title = "Última actualización: #{ last_update }"
|
77
|
+
header_title = "#{ title } (#{ site_url })"
|
78
|
+
headlines.unshift(header_title, sub_title)
|
79
|
+
end
|
80
|
+
|
81
|
+
private
|
82
|
+
|
83
|
+
# Applies formatting to headline and shrinks urls
|
84
|
+
# @return [String] formatted news headline
|
85
|
+
def format_headline(item, num)
|
86
|
+
''.concat("#{ num.next }. #{ item.title } ")
|
87
|
+
.concat("(#{ convert_date(item.pubDate) })")
|
88
|
+
.concat(" - #{ LinkShrink.shrink_url(item.link) }")
|
89
|
+
end
|
90
|
+
|
91
|
+
# Handles iteration of each headline
|
92
|
+
# @return [Array<String>] news headlines
|
93
|
+
def process_news(total = 25)
|
94
|
+
items.map.with_index do |item, num|
|
95
|
+
@headlines << format_headline(item, num) if total_met?(total)
|
96
|
+
end.compact || nil
|
97
|
+
end
|
98
|
+
|
99
|
+
# Returns true when total is reached
|
100
|
+
# @return [TrueClass, FalseClass]
|
101
|
+
def total_met?(total)
|
102
|
+
@headlines.length < Integer(total)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'uri'
|
2
|
+
require 'rss'
|
3
|
+
require 'time'
|
4
|
+
|
5
|
+
module EndiFeed
|
6
|
+
# This module contains various useful functions.
|
7
|
+
module Util
|
8
|
+
def self.included(base)
|
9
|
+
base.extend self
|
10
|
+
end
|
11
|
+
|
12
|
+
module_function
|
13
|
+
|
14
|
+
# Fetches and parses RSS feed
|
15
|
+
# @return [RSS] parsed XML feed or nil
|
16
|
+
def parse_feed
|
17
|
+
open('http://www.elnuevodia.com/rss/noticias.xml') do |rss|
|
18
|
+
RSS::Parser.parse(rss)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# Converts HTTP-date (RFC 2616) into a simpler date format
|
23
|
+
# @param date [Date, String] only Date or String
|
24
|
+
# @return [String] parsed date (mm/dd/yyyy)
|
25
|
+
def convert_date(date)
|
26
|
+
date = String(date)
|
27
|
+
Time.parse(date).strftime('%x')
|
28
|
+
end
|
29
|
+
|
30
|
+
# Converts HTTP-date (RFC 2616) into the 12-hour format
|
31
|
+
# @param date [Date, String] only Date or String
|
32
|
+
# @return [String] parsed time (HH:MM:SS AM|PM)
|
33
|
+
def convert_time(date)
|
34
|
+
date = String(date)
|
35
|
+
Time.parse(date).strftime('%r')
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,2 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet type='text/xsl' href='http://elnuevodia.feedsportal.com/xsl/es/rss.xsl'?>
|
2
|
+
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="2.0"><channel><title>El Nuevo Dia : Noticias</title><link>http://www.elnuevodia.com/</link><description>El Nuevo dia</description><language>es-ES</language><copyright>El Nuevo Dia</copyright><pubDate>Sat, 29 Jun 2013 16:27:33 GMT</pubDate><lastBuildDate>Sat, 29 Jun 2013 16:27:33 GMT</lastBuildDate><ttl>30</ttl><image><title>El Nuevo Dia : Noticias</title><url>http://www.elnuevodia.com/XStatic/endi/images/logoHeader.png</url><link>http://www.elnuevodia.com/</link></image><item><title>Apuñalan a mujer en negocio en San Sebastián</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8c87c/l/0L0Selnuevodia0N0Capunalanamujerennegocioensansebastian0E15414340Bhtml/story01.htm</link><description>La f&#233;mina result&#243; herida cuando una persona se arm&#243; con un objeto filoso y la hir&#237;o en distintas partes del cuerpo<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8c87c/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fapunalanamujerennegocioensansebastian-1541434.html&t=Apu%C3%B1alan+a+mujer+en+negocio+en+San+Sebasti%C3%A1n" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fapunalanamujerennegocioensansebastian-1541434.html&t=Apu%C3%B1alan+a+mujer+en+negocio+en+San+Sebasti%C3%A1n" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fapunalanamujerennegocioensansebastian-1541434.html&t=Apu%C3%B1alan+a+mujer+en+negocio+en+San+Sebasti%C3%A1n" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fapunalanamujerennegocioensansebastian-1541434.html&t=Apu%C3%B1alan+a+mujer+en+negocio+en+San+Sebasti%C3%A1n" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fapunalanamujerennegocioensansebastian-1541434.html&t=Apu%C3%B1alan+a+mujer+en+negocio+en+San+Sebasti%C3%A1n" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666615198/u/0/f/623466/c/34275/s/2df8c87c/a2.htm"><img src="http://da.feedsportal.com/r/165666615198/u/0/f/623466/c/34275/s/2df8c87c/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666615198/u/0/f/623466/c/34275/s/2df8c87c/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 16:10:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/apunalanamujerennegocioensansebastian-1541434.html</guid></item><item><title>Atropellan a dos ciclistas en Guayama</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8d63f/l/0L0Selnuevodia0N0Catropellanadosciclistasenguayama0E15414290Bhtml/story01.htm</link><description>El accidente ocurri&#243; en la PR-3 en el &#225;rea de Guayama<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8d63f/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fatropellanadosciclistasenguayama-1541429.html&t=Atropellan+a+dos+ciclistas+en+Guayama" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fatropellanadosciclistasenguayama-1541429.html&t=Atropellan+a+dos+ciclistas+en+Guayama" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fatropellanadosciclistasenguayama-1541429.html&t=Atropellan+a+dos+ciclistas+en+Guayama" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fatropellanadosciclistasenguayama-1541429.html&t=Atropellan+a+dos+ciclistas+en+Guayama" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fatropellanadosciclistasenguayama-1541429.html&t=Atropellan+a+dos+ciclistas+en+Guayama" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665679214/u/0/f/623466/c/34275/s/2df8d63f/a2.htm"><img src="http://da.feedsportal.com/r/165665679214/u/0/f/623466/c/34275/s/2df8d63f/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665679214/u/0/f/623466/c/34275/s/2df8d63f/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 15:46:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/atropellanadosciclistasenguayama-1541429.html</guid></item><item><title>Ocupan 20 libras de marihuana en aeropuerto de Aguadilla</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8d63e/l/0L0Selnuevodia0N0Cocupan20Alibrasdemarihuanaenaeropuertodeaguadilla0E1541430A0Bhtml/story01.htm</link><description>El valor estimado de la la droga decomisada fue de unos $24,000<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8d63e/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Focupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html&t=Ocupan+20+libras+de+marihuana+en+aeropuerto+de+Aguadilla" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Focupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html&t=Ocupan+20+libras+de+marihuana+en+aeropuerto+de+Aguadilla" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Focupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html&t=Ocupan+20+libras+de+marihuana+en+aeropuerto+de+Aguadilla" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Focupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html&t=Ocupan+20+libras+de+marihuana+en+aeropuerto+de+Aguadilla" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Focupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html&t=Ocupan+20+libras+de+marihuana+en+aeropuerto+de+Aguadilla" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665679213/u/0/f/623466/c/34275/s/2df8d63e/a2.htm"><img src="http://da.feedsportal.com/r/165665679213/u/0/f/623466/c/34275/s/2df8d63e/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665679213/u/0/f/623466/c/34275/s/2df8d63e/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 15:45:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/ocupan20librasdemarihuanaenaeropuertodeaguadilla-1541430.html</guid></item><item><title>Conductora muere tras caer por un barranco</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8350f/l/0L0Selnuevodia0N0Cconductoramueretrascaerporunbarranco0E15414250Bhtml/story01.htm</link><description>El accidente ocurri&#243; en la PR-155 de Morovis<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8350f/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramueretrascaerporunbarranco-1541425.html&t=Conductora+muere+tras+caer+por+un+barranco" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramueretrascaerporunbarranco-1541425.html&t=Conductora+muere+tras+caer+por+un+barranco" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramueretrascaerporunbarranco-1541425.html&t=Conductora+muere+tras+caer+por+un+barranco" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramueretrascaerporunbarranco-1541425.html&t=Conductora+muere+tras+caer+por+un+barranco" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramueretrascaerporunbarranco-1541425.html&t=Conductora+muere+tras+caer+por+un+barranco" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666614179/u/0/f/623466/c/34275/s/2df8350f/a2.htm"><img src="http://da.feedsportal.com/r/165666614179/u/0/f/623466/c/34275/s/2df8350f/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666614179/u/0/f/623466/c/34275/s/2df8350f/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 15:13:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/conductoramueretrascaerporunbarranco-1541425.html</guid></item><item><title>Acusan empleado de la AAA por apropiarse de dinero de abonados</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8350d/l/0L0Selnuevodia0N0Cacusanempleadodelaaaaporapropiarsededinerodeabonados0E15414260Bhtml/story01.htm</link><description>Cobraba cantidad en efectivo a cambio de no interrumpir servicio<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df8350d/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Facusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html&t=Acusan+empleado+de+la+AAA+por+apropiarse+de+dinero+de+abonados" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Facusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html&t=Acusan+empleado+de+la+AAA+por+apropiarse+de+dinero+de+abonados" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Facusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html&t=Acusan+empleado+de+la+AAA+por+apropiarse+de+dinero+de+abonados" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Facusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html&t=Acusan+empleado+de+la+AAA+por+apropiarse+de+dinero+de+abonados" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Facusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html&t=Acusan+empleado+de+la+AAA+por+apropiarse+de+dinero+de+abonados" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666614178/u/0/f/623466/c/34275/s/2df8350d/a2.htm"><img src="http://da.feedsportal.com/r/165666614178/u/0/f/623466/c/34275/s/2df8350d/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666614178/u/0/f/623466/c/34275/s/2df8350d/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 15:11:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/acusanempleadodelaaaaporapropiarsededinerodeabonados-1541426.html</guid></item><item><title>Mujer le muerde el labio a su pareja</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c8f4/l/0L0Selnuevodia0N0Cmujerlemuerdeellabioasupareja0E15414190Bhtml/story01.htm</link><description>El incidente ocurri&#243; anoche en una urbanizaci&#243;n de Carolina<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c8f4/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmujerlemuerdeellabioasupareja-1541419.html&t=Mujer+le+muerde+el+labio+a+su+pareja" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmujerlemuerdeellabioasupareja-1541419.html&t=Mujer+le+muerde+el+labio+a+su+pareja" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmujerlemuerdeellabioasupareja-1541419.html&t=Mujer+le+muerde+el+labio+a+su+pareja" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmujerlemuerdeellabioasupareja-1541419.html&t=Mujer+le+muerde+el+labio+a+su+pareja" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmujerlemuerdeellabioasupareja-1541419.html&t=Mujer+le+muerde+el+labio+a+su+pareja" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665516508/u/0/f/623466/c/34275/s/2df7c8f4/a2.htm"><img src="http://da.feedsportal.com/r/165665516508/u/0/f/623466/c/34275/s/2df7c8f4/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665516508/u/0/f/623466/c/34275/s/2df7c8f4/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 13:41:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/mujerlemuerdeellabioasupareja-1541419.html</guid></item><item><title>A la morada eterna Yiye Ávila</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c8f1/l/0L0Selnuevodia0N0Calamoradaeternayiyeavila0E15414150Bhtml/story01.htm</link><description>El famoso evangelizador falleci&#243; en su hogar a los 87 a&#241;os<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c8f1/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Falamoradaeternayiyeavila-1541415.html&t=A+la+morada+eterna+Yiye+%C3%81vila" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Falamoradaeternayiyeavila-1541415.html&t=A+la+morada+eterna+Yiye+%C3%81vila" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Falamoradaeternayiyeavila-1541415.html&t=A+la+morada+eterna+Yiye+%C3%81vila" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Falamoradaeternayiyeavila-1541415.html&t=A+la+morada+eterna+Yiye+%C3%81vila" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Falamoradaeternayiyeavila-1541415.html&t=A+la+morada+eterna+Yiye+%C3%81vila" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665516506/u/0/f/623466/c/34275/s/2df7c8f1/a2.htm"><img src="http://da.feedsportal.com/r/165665516506/u/0/f/623466/c/34275/s/2df7c8f1/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665516506/u/0/f/623466/c/34275/s/2df7c8f1/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 13:30:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/alamoradaeternayiyeavila-1541415.html</guid></item><item><title>Sábado soleado y con poco polvo del Sahara</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c311/l/0L0Selnuevodia0N0Csabadosoleadoyconpocopolvodelsahara0E1541410A0Bhtml/story01.htm</link><description>Luego de una racha de d&#237;as lluviosos, el tiempo mejora<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c311/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsabadosoleadoyconpocopolvodelsahara-1541410.html&t=S%C3%A1bado+soleado+y+con+poco+polvo+del+Sahara" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsabadosoleadoyconpocopolvodelsahara-1541410.html&t=S%C3%A1bado+soleado+y+con+poco+polvo+del+Sahara" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsabadosoleadoyconpocopolvodelsahara-1541410.html&t=S%C3%A1bado+soleado+y+con+poco+polvo+del+Sahara" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsabadosoleadoyconpocopolvodelsahara-1541410.html&t=S%C3%A1bado+soleado+y+con+poco+polvo+del+Sahara" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsabadosoleadoyconpocopolvodelsahara-1541410.html&t=S%C3%A1bado+soleado+y+con+poco+polvo+del+Sahara" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665516021/u/0/f/623466/c/34275/s/2df7c311/a2.htm"><img src="http://da.feedsportal.com/r/165665516021/u/0/f/623466/c/34275/s/2df7c311/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665516021/u/0/f/623466/c/34275/s/2df7c311/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 13:10:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/sabadosoleadoyconpocopolvodelsahara-1541410.html</guid></item><item><title>Muere adolescente de 14 años al chocar en four track</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c310/l/0L0Selnuevodia0N0Cmuereadolescentede14anosalchocarenfourtrack0E154140A90Bhtml/story01.htm</link><description>El accidente ocurri&#243; a las 3:30 a.m. en Salinas<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df7c310/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmuereadolescentede14anosalchocarenfourtrack-1541409.html&t=Muere+adolescente+de+14+a%C3%B1os+al+chocar+en+four+track" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmuereadolescentede14anosalchocarenfourtrack-1541409.html&t=Muere+adolescente+de+14+a%C3%B1os+al+chocar+en+four+track" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmuereadolescentede14anosalchocarenfourtrack-1541409.html&t=Muere+adolescente+de+14+a%C3%B1os+al+chocar+en+four+track" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmuereadolescentede14anosalchocarenfourtrack-1541409.html&t=Muere+adolescente+de+14+a%C3%B1os+al+chocar+en+four+track" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fmuereadolescentede14anosalchocarenfourtrack-1541409.html&t=Muere+adolescente+de+14+a%C3%B1os+al+chocar+en+four+track" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665516020/u/0/f/623466/c/34275/s/2df7c310/a2.htm"><img src="http://da.feedsportal.com/r/165665516020/u/0/f/623466/c/34275/s/2df7c310/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665516020/u/0/f/623466/c/34275/s/2df7c310/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 13:00:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/muereadolescentede14anosalchocarenfourtrack-1541409.html</guid></item><item><title>Senado aprueba informes de conferencia de 10 medidas presupuestarias</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df45354/l/0L0Selnuevodia0N0Csenadoapruebainformesdeconferenciade10Amedidaspresupuestarias0E15411880Bhtml/story01.htm</link><description>Entre los informes aprobados est&#225;n las resoluciones conjuntas que contienen la asignaci&#243;n y distribuci&#243;n de los fondos de este presupuesto<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df45354/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html&t=Senado+aprueba+informes+de+conferencia+de+10+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html&t=Senado+aprueba+informes+de+conferencia+de+10+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html&t=Senado+aprueba+informes+de+conferencia+de+10+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html&t=Senado+aprueba+informes+de+conferencia+de+10+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html&t=Senado+aprueba+informes+de+conferencia+de+10+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665667462/u/0/f/623466/c/34275/s/2df45354/a2.htm"><img src="http://da.feedsportal.com/r/165665667462/u/0/f/623466/c/34275/s/2df45354/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665667462/u/0/f/623466/c/34275/s/2df45354/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 03:42:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/senadoapruebainformesdeconferenciade10medidaspresupuestarias-1541188.html</guid></item><item><title>Cámara aprueba paquete de medidas presupuestarias</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df45351/l/0L0Selnuevodia0N0Ccamaraapruebapaquetedemedidaspresupuestarias0E15411890Bhtml/story01.htm</link><description>La delegaci&#243;n del PNP vot&#243; en contra de las medidas<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df45351/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fcamaraapruebapaquetedemedidaspresupuestarias-1541189.html&t=C%C3%A1mara+aprueba+paquete+de+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fcamaraapruebapaquetedemedidaspresupuestarias-1541189.html&t=C%C3%A1mara+aprueba+paquete+de+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fcamaraapruebapaquetedemedidaspresupuestarias-1541189.html&t=C%C3%A1mara+aprueba+paquete+de+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fcamaraapruebapaquetedemedidaspresupuestarias-1541189.html&t=C%C3%A1mara+aprueba+paquete+de+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fcamaraapruebapaquetedemedidaspresupuestarias-1541189.html&t=C%C3%A1mara+aprueba+paquete+de+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665667461/u/0/f/623466/c/34275/s/2df45351/a2.htm"><img src="http://da.feedsportal.com/r/165665667461/u/0/f/623466/c/34275/s/2df45351/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665667461/u/0/f/623466/c/34275/s/2df45351/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 03:39:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/camaraapruebapaquetedemedidaspresupuestarias-1541189.html</guid></item><item><title>Sigue engordando la Loto y la Revancha</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df3be96/l/0L0Selnuevodia0N0Csigueengordandolalotoylarevancha0E15411840Bhtml/story01.htm</link><description>El premio de la Loto para el pr&#243;ximo mi&#233;rcoles ascendi&#243; a $4 millones<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df3be96/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsigueengordandolalotoylarevancha-1541184.html&t=Sigue+engordando+la+Loto+y+la+Revancha" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsigueengordandolalotoylarevancha-1541184.html&t=Sigue+engordando+la+Loto+y+la+Revancha" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsigueengordandolalotoylarevancha-1541184.html&t=Sigue+engordando+la+Loto+y+la+Revancha" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsigueengordandolalotoylarevancha-1541184.html&t=Sigue+engordando+la+Loto+y+la+Revancha" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsigueengordandolalotoylarevancha-1541184.html&t=Sigue+engordando+la+Loto+y+la+Revancha" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666601354/u/0/f/623466/c/34275/s/2df3be96/a2.htm"><img src="http://da.feedsportal.com/r/165666601354/u/0/f/623466/c/34275/s/2df3be96/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666601354/u/0/f/623466/c/34275/s/2df3be96/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 02:54:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/sigueengordandolalotoylarevancha-1541184.html</guid></item><item><title>Senado aprueba informe conferencia de cinco medidas presupuestarias</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df3be95/l/0L0Selnuevodia0N0Csenadoapruebainformeconferenciadecincomedidaspresupuestarias0E15411770Bhtml/story01.htm</link><description>Se ratific&#243; el acuerdo en el proyecto que autoriza un dividendo extraordinario de $200 millones a los miembros de la Asociaci&#243;n de Suscripci&#243;n Conjunta<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df3be95/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html&t=Senado+aprueba+informe+conferencia+de+cinco+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html&t=Senado+aprueba+informe+conferencia+de+cinco+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html&t=Senado+aprueba+informe+conferencia+de+cinco+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html&t=Senado+aprueba+informe+conferencia+de+cinco+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html&t=Senado+aprueba+informe+conferencia+de+cinco+medidas+presupuestarias" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666601353/u/0/f/623466/c/34275/s/2df3be95/a2.htm"><img src="http://da.feedsportal.com/r/165666601353/u/0/f/623466/c/34275/s/2df3be95/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666601353/u/0/f/623466/c/34275/s/2df3be95/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 02:38:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/senadoapruebainformeconferenciadecincomedidaspresupuestarias-1541177.html</guid></item><item><title>Conductora muere al caer con su carro por un precipicio</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df37e2c/l/0L0Selnuevodia0N0Cconductoramuerealcaerconsucarroporunprecipicio0E15411650Bhtml/story01.htm</link><description>El incidente ocurri&#243; en la carretera PR-155 en Morovis<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df37e2c/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramuerealcaerconsucarroporunprecipicio-1541165.html&t=Conductora+muere+al+caer+con+su+carro+por+un+precipicio" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramuerealcaerconsucarroporunprecipicio-1541165.html&t=Conductora+muere+al+caer+con+su+carro+por+un+precipicio" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramuerealcaerconsucarroporunprecipicio-1541165.html&t=Conductora+muere+al+caer+con+su+carro+por+un+precipicio" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramuerealcaerconsucarroporunprecipicio-1541165.html&t=Conductora+muere+al+caer+con+su+carro+por+un+precipicio" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductoramuerealcaerconsucarroporunprecipicio-1541165.html&t=Conductora+muere+al+caer+con+su+carro+por+un+precipicio" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665575602/u/0/f/623466/c/34275/s/2df37e2c/a2.htm"><img src="http://da.feedsportal.com/r/165665575602/u/0/f/623466/c/34275/s/2df37e2c/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665575602/u/0/f/623466/c/34275/s/2df37e2c/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 01:20:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/conductoramuerealcaerconsucarroporunprecipicio-1541165.html</guid></item><item><title>Culpable por práctica ilícita de la sicología</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df2fbf6/l/0L0Selnuevodia0N0Cculpableporpracticailicitadelasicologia0E15411430Bhtml/story01.htm</link><description>Un jurado emiti&#243; el veredicto contra Luis F. Gonz&#225;lez Col&#243;n, por los delitos de apropiaci&#243;n ilegal agravada y pr&#225;ctica il&#237;cita de la sicolog&#237;a<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df2fbf6/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fculpableporpracticailicitadelasicologia-1541143.html&t=Culpable+por+pr%C3%A1ctica+il%C3%ADcita+de+la+sicolog%C3%ADa" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fculpableporpracticailicitadelasicologia-1541143.html&t=Culpable+por+pr%C3%A1ctica+il%C3%ADcita+de+la+sicolog%C3%ADa" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fculpableporpracticailicitadelasicologia-1541143.html&t=Culpable+por+pr%C3%A1ctica+il%C3%ADcita+de+la+sicolog%C3%ADa" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fculpableporpracticailicitadelasicologia-1541143.html&t=Culpable+por+pr%C3%A1ctica+il%C3%ADcita+de+la+sicolog%C3%ADa" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fculpableporpracticailicitadelasicologia-1541143.html&t=Culpable+por+pr%C3%A1ctica+il%C3%ADcita+de+la+sicolog%C3%ADa" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665664460/u/0/f/623466/c/34275/s/2df2fbf6/a2.htm"><img src="http://da.feedsportal.com/r/165665664460/u/0/f/623466/c/34275/s/2df2fbf6/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665664460/u/0/f/623466/c/34275/s/2df2fbf6/a2t.img" border="0"/></description><pubDate>Sat, 29 Jun 2013 00:04:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/culpableporpracticailicitadelasicologia-1541143.html</guid></item><item><title>Quejas en filas para pagar contribuciones adeudadas</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df307f9/l/0L0Selnuevodia0N0Cquejasenfilasparapagarcontribucionesadeudadas0E1541120A0Bhtml/story01.htm</link><description>Contribuyentes dejaron para lo &#250;ltimo el pago de sus deudas y ahora se quejan por la amnist&#237;a<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df307f9/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquejasenfilasparapagarcontribucionesadeudadas-1541120.html&t=Quejas+en+filas+para+pagar+contribuciones+adeudadas" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquejasenfilasparapagarcontribucionesadeudadas-1541120.html&t=Quejas+en+filas+para+pagar+contribuciones+adeudadas" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquejasenfilasparapagarcontribucionesadeudadas-1541120.html&t=Quejas+en+filas+para+pagar+contribuciones+adeudadas" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquejasenfilasparapagarcontribucionesadeudadas-1541120.html&t=Quejas+en+filas+para+pagar+contribuciones+adeudadas" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquejasenfilasparapagarcontribucionesadeudadas-1541120.html&t=Quejas+en+filas+para+pagar+contribuciones+adeudadas" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666047700/u/0/f/623466/c/34275/s/2df307f9/a2.htm"><img src="http://da.feedsportal.com/r/165666047700/u/0/f/623466/c/34275/s/2df307f9/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666047700/u/0/f/623466/c/34275/s/2df307f9/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 22:51:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/quejasenfilasparapagarcontribucionesadeudadas-1541120.html</guid></item><item><title>Senado confirma nueva Junta de Gobierno de la UPR</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df307f6/l/0L0Selnuevodia0N0Csenadoconfirmanuevajuntadegobiernodelaupr0E15411230Bhtml/story01.htm</link><description>La confirmaci&#243;n de los nombramientos fue objetada por el portavoz de la delegaci&#243;n del PNP, Larry Seilhamer Rodr&#237;guez<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df307f6/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoconfirmanuevajuntadegobiernodelaupr-1541123.html&t=Senado+confirma+nueva+Junta+de+Gobierno+de+la+UPR" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoconfirmanuevajuntadegobiernodelaupr-1541123.html&t=Senado+confirma+nueva+Junta+de+Gobierno+de+la+UPR" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoconfirmanuevajuntadegobiernodelaupr-1541123.html&t=Senado+confirma+nueva+Junta+de+Gobierno+de+la+UPR" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoconfirmanuevajuntadegobiernodelaupr-1541123.html&t=Senado+confirma+nueva+Junta+de+Gobierno+de+la+UPR" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fsenadoconfirmanuevajuntadegobiernodelaupr-1541123.html&t=Senado+confirma+nueva+Junta+de+Gobierno+de+la+UPR" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666047698/u/0/f/623466/c/34275/s/2df307f6/a2.htm"><img src="http://da.feedsportal.com/r/165666047698/u/0/f/623466/c/34275/s/2df307f6/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666047698/u/0/f/623466/c/34275/s/2df307f6/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 22:51:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/senadoconfirmanuevajuntadegobiernodelaupr-1541123.html</guid></item><item><title>Conductor choca contra vitrina de oficina de correo en Bayamón</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df27b3c/l/0L0Selnuevodia0N0Cconductorchocacontravitrinadeoficinadecorreoenbayamon0E15411130Bhtml/story01.htm</link><description>La persona dijo que se equivoc&#243; al poner el cambio del auto<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df27b3c/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html&t=Conductor+choca+contra+vitrina+de+oficina+de+correo+en+Bayam%C3%B3n" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html&t=Conductor+choca+contra+vitrina+de+oficina+de+correo+en+Bayam%C3%B3n" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html&t=Conductor+choca+contra+vitrina+de+oficina+de+correo+en+Bayam%C3%B3n" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html&t=Conductor+choca+contra+vitrina+de+oficina+de+correo+en+Bayam%C3%B3n" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fconductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html&t=Conductor+choca+contra+vitrina+de+oficina+de+correo+en+Bayam%C3%B3n" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666047339/u/0/f/623466/c/34275/s/2df27b3c/a2.htm"><img src="http://da.feedsportal.com/r/165666047339/u/0/f/623466/c/34275/s/2df27b3c/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666047339/u/0/f/623466/c/34275/s/2df27b3c/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 22:19:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/conductorchocacontravitrinadeoficinadecorreoenbayamon-1541113.html</guid></item><item><title>En suspenso confirmación de administradora de Terrenos y Roosevelt Roads</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df24f60/l/0L0Selnuevodia0N0Censuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads0E15410A970Bhtml/story01.htm</link><description>En la sesi&#243;n de hoy el Senado confirm&#243; a varias personas, la mayor&#237;a a juntas<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df24f60/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html&t=En+suspenso+confirmaci%C3%B3n+de+administradora+de+Terrenos+y+Roosevelt+Roads" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html&t=En+suspenso+confirmaci%C3%B3n+de+administradora+de+Terrenos+y+Roosevelt+Roads" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html&t=En+suspenso+confirmaci%C3%B3n+de+administradora+de+Terrenos+y+Roosevelt+Roads" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html&t=En+suspenso+confirmaci%C3%B3n+de+administradora+de+Terrenos+y+Roosevelt+Roads" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html&t=En+suspenso+confirmaci%C3%B3n+de+administradora+de+Terrenos+y+Roosevelt+Roads" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665572337/u/0/f/623466/c/34275/s/2df24f60/a2.htm"><img src="http://da.feedsportal.com/r/165665572337/u/0/f/623466/c/34275/s/2df24f60/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665572337/u/0/f/623466/c/34275/s/2df24f60/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 21:38:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/ensuspensoconfirmaciondeadministradoradeterrenosyrooseveltroads-1541097.html</guid></item><item><title>Policía dispara a un perro para evitar que atacara a su hija</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df23a13/l/0L0Selnuevodia0N0Cpoliciadisparaaunperroparaevitarqueatacaraasuhija0E15410A930Bhtml/story01.htm</link><description>El incidente ocurri&#243; esta tarde en Caguas<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df23a13/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fpoliciadisparaaunperroparaevitarqueatacaraasuhija-1541093.html&t=Polic%C3%ADa+dispara+a+un+perro+para+evitar+que+atacara+a+su+hija" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fpoliciadisparaaunperroparaevitarqueatacaraasuhija-1541093.html&t=Polic%C3%ADa+dispara+a+un+perro+para+evitar+que+atacara+a+su+hija" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fpoliciadisparaaunperroparaevitarqueatacaraasuhija-1541093.html&t=Polic%C3%ADa+dispara+a+un+perro+para+evitar+que+atacara+a+su+hija" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fpoliciadisparaaunperroparaevitarqueatacaraasuhija-1541093.html&t=Polic%C3%ADa+dispara+a+un+perro+para+evitar+que+atacara+a+su+hija" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fpoliciadisparaaunperroparaevitarqueatacaraasuhija-1541093.html&t=Polic%C3%ADa+dispara+a+un+perro+para+evitar+que+atacara+a+su+hija" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665501823/u/0/f/623466/c/34275/s/2df23a13/a2.htm"><img src="http://da.feedsportal.com/r/165665501823/u/0/f/623466/c/34275/s/2df23a13/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665501823/u/0/f/623466/c/34275/s/2df23a13/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 21:21:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/policiadisparaaunperroparaevitarqueatacaraasuhija-1541093.html</guid></item><item><title>Grave mujer apuñalada en farmacia de Río Piedras</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df23a12/l/0L0Selnuevodia0N0Cgravemujerapunaladaenfarmaciaderiopiedras0E15410A920Bhtml/story01.htm</link><description>La v&#237;ctima fue llevada al Centro M&#233;dico en R&#237;o Piedras<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df23a12/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fgravemujerapunaladaenfarmaciaderiopiedras-1541092.html&t=Grave+mujer+apu%C3%B1alada+en+farmacia+de+R%C3%ADo+Piedras" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fgravemujerapunaladaenfarmaciaderiopiedras-1541092.html&t=Grave+mujer+apu%C3%B1alada+en+farmacia+de+R%C3%ADo+Piedras" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fgravemujerapunaladaenfarmaciaderiopiedras-1541092.html&t=Grave+mujer+apu%C3%B1alada+en+farmacia+de+R%C3%ADo+Piedras" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fgravemujerapunaladaenfarmaciaderiopiedras-1541092.html&t=Grave+mujer+apu%C3%B1alada+en+farmacia+de+R%C3%ADo+Piedras" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fgravemujerapunaladaenfarmaciaderiopiedras-1541092.html&t=Grave+mujer+apu%C3%B1alada+en+farmacia+de+R%C3%ADo+Piedras" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665501822/u/0/f/623466/c/34275/s/2df23a12/a2.htm"><img src="http://da.feedsportal.com/r/165665501822/u/0/f/623466/c/34275/s/2df23a12/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665501822/u/0/f/623466/c/34275/s/2df23a12/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 21:19:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/gravemujerapunaladaenfarmaciaderiopiedras-1541092.html</guid></item><item><title>Desarrollan proyectos de ecoturismo en la Península de Cantera</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df215fd/l/0L0Selnuevodia0N0Cdesarrollanproyectosdeecoturismoenlapeninsuladecantera0E15410A520Bhtml/story01.htm</link><description>La comunidad est&#225; ubicada al lado de la laguna San Jos&#233; en San Juan<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df215fd/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fdesarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html&t=Desarrollan+proyectos+de+ecoturismo+en+la+Pen%C3%ADnsula+de+Cantera" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fdesarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html&t=Desarrollan+proyectos+de+ecoturismo+en+la+Pen%C3%ADnsula+de+Cantera" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fdesarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html&t=Desarrollan+proyectos+de+ecoturismo+en+la+Pen%C3%ADnsula+de+Cantera" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fdesarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html&t=Desarrollan+proyectos+de+ecoturismo+en+la+Pen%C3%ADnsula+de+Cantera" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fdesarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html&t=Desarrollan+proyectos+de+ecoturismo+en+la+Pen%C3%ADnsula+de+Cantera" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165666595705/u/0/f/623466/c/34275/s/2df215fd/a2.htm"><img src="http://da.feedsportal.com/r/165666595705/u/0/f/623466/c/34275/s/2df215fd/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165666595705/u/0/f/623466/c/34275/s/2df215fd/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 21:01:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/desarrollanproyectosdeecoturismoenlapeninsuladecantera-1541052.html</guid></item><item><title>Inauguran sistema de transporte en El Yunque</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65c/l/0L0Selnuevodia0N0Cinauguransistemadetransporteenelyunque0E15410A0A80Bhtml/story01.htm</link><description>El tranv&#237;a ofrecer&#225; transporte gratuito desde la Torre Yokah&#250; hasta la vereda Monte Britton a partir del 3 de julio<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65c/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Finauguransistemadetransporteenelyunque-1541008.html&t=Inauguran+sistema+de+transporte+en+El+Yunque" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Finauguransistemadetransporteenelyunque-1541008.html&t=Inauguran+sistema+de+transporte+en+El+Yunque" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Finauguransistemadetransporteenelyunque-1541008.html&t=Inauguran+sistema+de+transporte+en+El+Yunque" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Finauguransistemadetransporteenelyunque-1541008.html&t=Inauguran+sistema+de+transporte+en+El+Yunque" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Finauguransistemadetransporteenelyunque-1541008.html&t=Inauguran+sistema+de+transporte+en+El+Yunque" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665661083/u/0/f/623466/c/34275/s/2df1b65c/a2.htm"><img src="http://da.feedsportal.com/r/165665661083/u/0/f/623466/c/34275/s/2df1b65c/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665661083/u/0/f/623466/c/34275/s/2df1b65c/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 20:31:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/inauguransistemadetransporteenelyunque-1541008.html</guid></item><item><title>Hermanos van presos por timar a inversionistas</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65b/l/0L0Selnuevodia0N0Chermanosvanpresosportimarainversionistas0E1540A9720Bhtml/story01.htm</link><description>El esquema piramidal provoc&#243; p&#233;rdidas a m&#225;s de 230 inversionistas que suman $22 millones<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65b/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fhermanosvanpresosportimarainversionistas-1540972.html&t=Hermanos+van+presos+por+timar+a+inversionistas" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fhermanosvanpresosportimarainversionistas-1540972.html&t=Hermanos+van+presos+por+timar+a+inversionistas" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fhermanosvanpresosportimarainversionistas-1540972.html&t=Hermanos+van+presos+por+timar+a+inversionistas" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fhermanosvanpresosportimarainversionistas-1540972.html&t=Hermanos+van+presos+por+timar+a+inversionistas" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fhermanosvanpresosportimarainversionistas-1540972.html&t=Hermanos+van+presos+por+timar+a+inversionistas" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665661082/u/0/f/623466/c/34275/s/2df1b65b/a2.htm"><img src="http://da.feedsportal.com/r/165665661082/u/0/f/623466/c/34275/s/2df1b65b/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665661082/u/0/f/623466/c/34275/s/2df1b65b/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 20:16:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/hermanosvanpresosportimarainversionistas-1540972.html</guid></item><item><title>Quieren investigar contrato de Triple S con Mi Salud</title><link>http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65a/l/0L0Selnuevodia0N0Cquiereninvestigarcontratodetriplesconmisalud0E1540A9680Bhtml/story01.htm</link><description>Senador del PNP present&#243; resoluci&#243;n<img width='1' height='1' src='http://elnuevodia.feedsportal.com/c/34275/f/623466/s/2df1b65a/mf.gif' border='0'/><div class='mf-viral'><table border='0'><tr><td valign='middle'><a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquiereninvestigarcontratodetriplesconmisalud-1540968.html&t=Quieren+investigar+contrato+de+Triple+S+con+Mi+Salud" target="_blank"><img src="http://res3.feedsportal.com/social/twitter.png" border="0" /></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquiereninvestigarcontratodetriplesconmisalud-1540968.html&t=Quieren+investigar+contrato+de+Triple+S+con+Mi+Salud" target="_blank"><img src="http://res3.feedsportal.com/social/facebook.png" border="0" /></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquiereninvestigarcontratodetriplesconmisalud-1540968.html&t=Quieren+investigar+contrato+de+Triple+S+con+Mi+Salud" target="_blank"><img src="http://res3.feedsportal.com/social/linkedin.png" border="0" /></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquiereninvestigarcontratodetriplesconmisalud-1540968.html&t=Quieren+investigar+contrato+de+Triple+S+con+Mi+Salud" target="_blank"><img src="http://res3.feedsportal.com/social/googleplus.png" border="0" /></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.elnuevodia.com%2Fquiereninvestigarcontratodetriplesconmisalud-1540968.html&t=Quieren+investigar+contrato+de+Triple+S+con+Mi+Salud" target="_blank"><img src="http://res3.feedsportal.com/social/email.png" border="0" /></a></td><td valign='middle'></td></tr></table></div><br/><br/><a href="http://da.feedsportal.com/r/165665661081/u/0/f/623466/c/34275/s/2df1b65a/a2.htm"><img src="http://da.feedsportal.com/r/165665661081/u/0/f/623466/c/34275/s/2df1b65a/a2.img" border="0"/></a><img width="1" height="1" src="http://pi.feedsportal.com/r/165665661081/u/0/f/623466/c/34275/s/2df1b65a/a2t.img" border="0"/></description><pubDate>Fri, 28 Jun 2013 20:15:00 GMT</pubDate><guid isPermaLink="false">http://www.elnuevodia.com/quiereninvestigarcontratodetriplesconmisalud-1540968.html</guid></item></channel></rss>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
sample from: http://goo.gl/z0JZe
|
2
|
+
Image:
|
3
|
+
|
4
|
+
<div id="dvImageNt" class="clearfix imagenPrincipal fl">
|
5
|
+
<img src="http://recend.apextech.netdna-cdn.com/images/2013/07/02/esce.jpg" alt="" title="">
|
6
|
+
<div class="autoriaFoto">
|
7
|
+
En lo que va de año han ocurrido 438 asesinatos, 47 menos, que los reportados a esta fecha en el 2012.(Archivo)</div>
|
8
|
+
</div>
|
9
|
+
|
10
|
+
|
11
|
+
News:
|
12
|
+
<div id="textoNoticia">
|
13
|
+
<p><font style="font-size: 12px;">Un
|
14
|
+
hombre fue asesinado de varios impactos de bala esta tarde, dentro de
|
15
|
+
la barbería Casiano, localizada en la calle Ernesto Ramos Antonini
|
16
|
+
del casco urbano del municipio de Las Piedras, informó la Policía.</font></p>
|
17
|
+
|
18
|
+
<p>Según
|
19
|
+
informes preliminares del sargento Orlando Torres, supervisor de la
|
20
|
+
División de Homicidios del Área de Humacao, mientras González Vega
|
21
|
+
se encontraba en el negocio cuando varios individuos le dispararon,
|
22
|
+
ocasionándole la muerte en el acto.</p>
|
23
|
+
|
24
|
+
<p>El
|
25
|
+
occiso fue identificado como Ángel González Vega, alias Angelito,
|
26
|
+
de 21 años, residente de ese municipio.</p>
|
27
|
+
|
28
|
+
<p>El
|
29
|
+
agente José L.Figueroa junto a la fiscal Thaizza Rodríguez
|
30
|
+
investigan el motivo del crimen.</p>
|
31
|
+
|
32
|
+
|
33
|
+
<p>En
|
34
|
+
lo que va de año han ocurrido 438 asesinatos, 47 menos, que los
|
35
|
+
reportados a esta fecha en el 2012, según estadísticas de la
|
36
|
+
Superintendencia Auxiliar en Operaciones Estratégicas.</p>
|
37
|
+
<p></p><p>
|
38
|
+
</p>
|
39
|
+
|
40
|
+
|
41
|
+
</div>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe EndiFeed do
|
5
|
+
let(:endi) { EndiFeed }
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
stub_request(:get, 'http://www.elnuevodia.com/rss/noticias.xml')
|
9
|
+
.with(:headers => { 'Accept' => '*/*', 'User-Agent' => 'Ruby' })
|
10
|
+
.to_return(:status => 200, :body => fixture('noticias.xml'), :headers => {})
|
11
|
+
|
12
|
+
stub_request(:post, 'https://www.googleapis.com/urlshortener/v1/url')
|
13
|
+
.with(:headers => { 'Accept' => '*/*', 'User-Agent' => 'Ruby' })
|
14
|
+
.to_return(:status => 200, :body => 'http://goo.gl/fbsS', :headers => {})
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.get_news' do
|
18
|
+
it 'delegates to ::News.new.get_headlines' do
|
19
|
+
expect(endi.get_news(2).size).to eq(4)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe EndiFeed::News do
|
5
|
+
let(:news) { EndiFeed::News.new }
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
stub_request(:get, 'http://www.elnuevodia.com/rss/noticias.xml')
|
9
|
+
.with(:headers => { 'Accept' => '*/*', 'User-Agent' => 'Ruby' })
|
10
|
+
.to_return(:status => 200, :body => fixture('noticias.xml'), :headers => {})
|
11
|
+
|
12
|
+
stub_request(:post, 'https://www.googleapis.com/urlshortener/v1/url')
|
13
|
+
.with(:headers => { 'Accept' => '*/*', 'User-Agent' => 'Ruby' })
|
14
|
+
.to_return(:status => 200, :body => 'http://goo.gl/fbsS', :headers => {})
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.title' do
|
18
|
+
it 'returns title of the feed' do
|
19
|
+
expect(news.title).to eq('El Nuevo Dia : Noticias')
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '.site_url' do
|
24
|
+
it 'returns the url of the site' do
|
25
|
+
expect(news.site_url).to eq('http://www.elnuevodia.com/')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '.last_update' do
|
30
|
+
it 'returns the last update time of the feed' do
|
31
|
+
expect(news.last_update).to eq('12:27:33 PM')
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '.get_headlines' do
|
36
|
+
it 'returns formatted news' do
|
37
|
+
expect(news.get_headlines(2).size).to eq(4)
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'returns error msg when something goes wrong' do
|
41
|
+
expect(news.get_headlines('ee')).to eq('Problem retrieving news headlines.')
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '.format_header_text' do
|
46
|
+
it 'formats the header text' do
|
47
|
+
expect(news.format_header_text([]))
|
48
|
+
.to eq(['El Nuevo Dia : Noticias (http://www.elnuevodia.com/)', 'Última actualización: 12:27:33 PM'])
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe EndiFeed::Util do
|
5
|
+
let(:util) { EndiFeed::Util }
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
stub_request(:get, 'http://www.elnuevodia.com/rss/noticias.xml')
|
9
|
+
.with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'})
|
10
|
+
.to_return(:status => 200, :body => fixture('noticias.xml'), :headers => {})
|
11
|
+
|
12
|
+
stub_request(:post, 'https://www.googleapis.com/urlshortener/v1/url')
|
13
|
+
.with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'})
|
14
|
+
.to_return(:status => 200, :body => 'http://goo.gl/fbsS', :headers => {})
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.parse_feed' do
|
18
|
+
it 'returns an RSS::Rss instance' do
|
19
|
+
expect(util.parse_feed).to be_kind_of(RSS::Rss)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '.convert_date' do
|
24
|
+
it 'converts HTTP-date into a mm/dd/yy parsed date' do
|
25
|
+
expect(util.convert_date('Sat, 29 Jun 2013 16:27:33 GMT'))
|
26
|
+
.to eq('06/29/13')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '.convert_time' do
|
31
|
+
it 'converts HTTP-date into a 12-hour parsed time' do
|
32
|
+
expect(util.convert_time('Sat, 29 Jun 2013 16:27:33 GMT'))
|
33
|
+
.to eq('12:27:33 PM')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
require 'simplecov-gem-adapter'
|
3
|
+
require 'coveralls'
|
4
|
+
require 'webmock/rspec'
|
5
|
+
|
6
|
+
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
7
|
+
SimpleCov.start 'gem'
|
8
|
+
require 'endi_feed'
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
config.order = 'random'
|
12
|
+
end
|
13
|
+
|
14
|
+
def fixture(file)
|
15
|
+
file_path = File.join(File.dirname(__FILE__), 'fixtures', "#{file}")
|
16
|
+
File.open(file_path).read
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,207 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: endi_feed
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jonah Ruiz
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: link_shrink
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.0.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.0.1
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bundler
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.3'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.3'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rspec
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 2.13.0
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 2.13.0
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: webmock
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 1.12.3
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.12.3
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: simplecov
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ~>
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 0.7.1
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 0.7.1
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: simplecov-gem-adapter
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.0.1
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 1.0.1
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: coveralls
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ~>
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 0.6.7
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 0.6.7
|
142
|
+
description: EndiFeed is a Ruby Gem for getting the latest news from endi.com
|
143
|
+
email:
|
144
|
+
- jonah@pixelhipsters.com
|
145
|
+
executables:
|
146
|
+
- endifeed
|
147
|
+
extensions: []
|
148
|
+
extra_rdoc_files: []
|
149
|
+
files:
|
150
|
+
- .gitignore
|
151
|
+
- .rspec
|
152
|
+
- .ruby-gemset
|
153
|
+
- .ruby-version
|
154
|
+
- .travis.yml
|
155
|
+
- Gemfile
|
156
|
+
- LICENSE
|
157
|
+
- README.md
|
158
|
+
- Rakefile
|
159
|
+
- bin/endifeed
|
160
|
+
- endi_feed.gemspec
|
161
|
+
- lib/endi_feed.rb
|
162
|
+
- lib/endi_feed/cli.rb
|
163
|
+
- lib/endi_feed/news.rb
|
164
|
+
- lib/endi_feed/util.rb
|
165
|
+
- lib/endi_feed/version.rb
|
166
|
+
- spec/fixtures/noticias.xml
|
167
|
+
- spec/fixtures/sample_scrape.html
|
168
|
+
- spec/lib/endi_feed_spec.rb
|
169
|
+
- spec/lib/news_spec.rb
|
170
|
+
- spec/lib/util_spec.rb
|
171
|
+
- spec/spec_helper.rb
|
172
|
+
homepage: https://github.com/jonahoffline/endi_feed
|
173
|
+
licenses:
|
174
|
+
- MIT
|
175
|
+
post_install_message:
|
176
|
+
rdoc_options: []
|
177
|
+
require_paths:
|
178
|
+
- lib
|
179
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
180
|
+
none: false
|
181
|
+
requirements:
|
182
|
+
- - ! '>='
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: 1.9.3
|
185
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
186
|
+
none: false
|
187
|
+
requirements:
|
188
|
+
- - ! '>='
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '0'
|
191
|
+
segments:
|
192
|
+
- 0
|
193
|
+
hash: -1370821113523475134
|
194
|
+
requirements: []
|
195
|
+
rubyforge_project:
|
196
|
+
rubygems_version: 1.8.25
|
197
|
+
signing_key:
|
198
|
+
specification_version: 3
|
199
|
+
summary: EndiFeed is a Ruby Gem for getting the latest news from endi.com / El Nuevo
|
200
|
+
Dia Newspaper
|
201
|
+
test_files:
|
202
|
+
- spec/fixtures/noticias.xml
|
203
|
+
- spec/fixtures/sample_scrape.html
|
204
|
+
- spec/lib/endi_feed_spec.rb
|
205
|
+
- spec/lib/news_spec.rb
|
206
|
+
- spec/lib/util_spec.rb
|
207
|
+
- spec/spec_helper.rb
|