Add testdata

RSS author parsing
This commit is contained in:
Chris Grindstaff 2013-03-27 23:05:27 -04:00
parent 87efb1906c
commit 9a77aeb2f6
5 changed files with 1559 additions and 5 deletions

31
feed.go
View File

@ -112,14 +112,37 @@ func (this *Feed) FetchClient(uri string, client *http.Client, charset xmlx.Char
}
this.Url = uri
// Extract type and version of the feed so we can have the appropriate
// function parse it (rss 0.91, rss 0.92, rss 2, atom etc).
doc := xmlx.New()
if err = doc.LoadUriClient(uri, client, charset); err != nil {
return
}
return this.makeFeed(doc)
}
// Fetch retrieves the feed's content from the []byte
//
// The charset parameter overrides the xml decoder's CharsetReader.
// This allows us to specify a custom character encoding conversion
// routine when dealing with non-utf8 input. Supply 'nil' to use the
// default from Go's xml package.
func (this *Feed) FetchBytes(uri string, content []byte, charset xmlx.CharsetFunc) (err error) {
this.Url = uri
doc := xmlx.New()
if err = doc.LoadBytes(content, charset); err != nil {
return
}
return this.makeFeed(doc)
}
func (this *Feed) makeFeed(doc *xmlx.Document) (err error) {
// Extract type and version of the feed so we can have the appropriate
// function parse it (rss 0.91, rss 0.92, rss 2, atom etc).
this.Type, this.Version = this.GetVersionInfo(doc)
if ok := this.testVersions(); !ok {
@ -142,7 +165,7 @@ func (this *Feed) FetchClient(uri string, client *http.Client, charset xmlx.Char
this.CacheTimeout = this.Channels[0].TTL
}
return
return
}
// This function returns true or false, depending on whether the CacheTimeout

View File

@ -1,6 +1,11 @@
package feeder
import "testing"
import (
"testing"
"io/ioutil"
)
var items []*Item
func TestFeed(t *testing.T) {
urilist := []string{
@ -24,10 +29,38 @@ func TestFeed(t *testing.T) {
}
}
func Test_AtomAuthor(t *testing.T) {
content, err := ioutil.ReadFile("testdata/idownload.atom")
if err != nil {
t.Errorf("unable to load file")
}
feed := New(1, true, chanHandler, itemHandler)
err = feed.FetchBytes("http://example.com", content, nil)
item := items[0]
expected := "Cody Lee"
if item.Author.Name != expected {
t.Errorf("Expected author to be %s but found %s", expected, item.Author.Name)
}
}
func Test_RssAuthor(t *testing.T) {
content, _ := ioutil.ReadFile("testdata/boing.rss")
feed := New(1, true, chanHandler, itemHandler)
feed.FetchBytes("http://example.com", content, nil)
item := items[0]
expected := "Cory Doctorow"
if item.Author.Name != expected {
t.Errorf("Expected author to be %s but found %s", expected, item.Author.Name)
}
}
func chanHandler(feed *Feed, newchannels []*Channel) {
println(len(newchannels), "new channel(s) in", feed.Url)
}
func itemHandler(feed *Feed, ch *Channel, newitems []*Item) {
items = newitems
println(len(newitems), "new item(s) in", ch.Title, "of", feed.Url)
}

1
rss.go
View File

@ -156,6 +156,7 @@ func (this *Feed) readRss2(doc *xmlx.Document) (err error) {
i.Author = Author{}
i.Author.Name = n.Value
}
i.Author.Name = item.S(ns, "creator")
i.Comments = item.S(ns, "comments")
i.Guid = item.S(ns, "guid")

1019
testdata/boing.rss vendored Normal file

File diff suppressed because it is too large Load Diff

478
testdata/idownload.atom vendored Normal file
View File

@ -0,0 +1,478 @@
<?xml version="1.0" encoding="UTF-8"?><feed
xmlns="http://www.w3.org/2005/Atom"
xmlns:thr="http://purl.org/syndication/thread/1.0"
xml:lang="en-US"
xml:base="http://www.idownloadblog.com/wp-atom.php"
>
<title type="text">iDownloadBlog.com</title>
<subtitle type="text">iPhone - iPad - iOS</subtitle>
<updated>2013-03-27T05:53:14Z</updated>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com" />
<id>http://www.idownloadblog.com/feed/atom/</id>
<link rel="self" type="application/atom+xml" href="http://www.idownloadblog.com/feed/atom/" />
<generator uri="http://wordpress.org/" version="3.5.1">WordPress</generator>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Flipboard 2.0 is out with custom magazines, notifications and more]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/" />
<id>http://www.idownloadblog.com/?p=214496</id>
<updated>2013-03-27T05:53:14Z</updated>
<published>2013-03-27T05:49:42Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="App Store Apps" /><category scheme="http://www.idownloadblog.com" term="Flipboard" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="Update" /> <summary type="html"><![CDATA[Flipboard released a rather significant update for its iOS app tonight, bringing the social news aggregator to version 2.0. The update includes a few ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-214497" alt="flipboard 2.0" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/flipboard-2.0.png" width="550" height="468" /></p>
<p>Flipboard released a rather significant update for its iOS app tonight, bringing the social news aggregator to version 2.0. The update includes a few major new features, including custom magazines and user notifications, and other improvements.</p>
<p>Perhaps the biggest addition to the app is the ability to create your own custom magazines. Users can now collect and save content into their own magazines, sort of like Pinterest, allowing users to essentially bookmark their favorite stuff&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/">Flipboard 2.0 is out with custom magazines, notifications and more</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/">Flipboard 2.0 is out with custom magazines, notifications and more</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/#comments" thr:count="4"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/flipboard-2-0-is-out-with-custom-magazines-notifications-and-more/feed/atom/" thr:count="4"/>
<thr:total>4</thr:total>
</entry>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Supply chain chatter claims Apple is building 4K &#8216;Ultra HD&#8217; TV set]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/" />
<id>http://www.idownloadblog.com/?p=214493</id>
<updated>2013-03-27T05:18:22Z</updated>
<published>2013-03-27T05:18:22Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Apple TV" /><category scheme="http://www.idownloadblog.com" term="DigiTimes" /><category scheme="http://www.idownloadblog.com" term="iTV" /><category scheme="http://www.idownloadblog.com" term="Rumors" /><category scheme="http://www.idownloadblog.com" term="Television" /><category scheme="http://www.idownloadblog.com" term="TV" /> <summary type="html"><![CDATA[It&#8217;s been a while since we&#8217;ve heard any new information regarding Apple&#8217;s rumored TV project. It seems &#8216;iTV&#8217; speculation has been replaced by talk ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-large wp-image-211874" alt="iTV mockup (Martin Hajek 002)" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/iTV-mockup-Martin-Hajek-002-1024x667.jpg" width="593" height="386" /></p>
<p>It&#8217;s been a while since we&#8217;ve heard any new information regarding Apple&#8217;s <a href="http://www.idownloadblog.com/tag/itv/">rumored TV project</a>. It seems &#8216;iTV&#8217; speculation has been replaced by talk of Apple&#8217;s secret plans for the <a href="http://www.idownloadblog.com/tag/iwatch/">smartwatch space</a>, and its expected entry into the <a href="http://www.idownloadblog.com/2013/02/11/budget-iphone-june/">budget handset market</a>.</p>
<p>But that changed this evening with a new report out of China, claiming that Apple has been in discussions with Foxconn over the production schedule of a TV set. And the 4K &#8216;Ultra HD&#8217; television will finally land in either late 2013, or early next year&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/">Supply chain chatter claims Apple is building 4K &#8216;Ultra HD&#8217; TV set</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/">Supply chain chatter claims Apple is building 4K &#8216;Ultra HD&#8217; TV set</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/#comments" thr:count="4"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/apple-building-4k-ultra-hd-tv/feed/atom/" thr:count="4"/>
<thr:total>4</thr:total>
</entry>
<entry>
<author>
<name>Jeff Benjamin</name>
<uri>http://www.idownloadblog.com/author/jeffbenjamin/</uri>
</author>
<title type="html"><![CDATA[Lets Talk Jailbreak 03: What type of socks are you wearing?]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/" />
<id>http://www.idownloadblog.com/?p=214181</id>
<updated>2013-03-27T03:16:18Z</updated>
<published>2013-03-27T03:10:59Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Jailbreak" /><category scheme="http://www.idownloadblog.com" term="Jailbreak Apps &amp; Tweaks" /><category scheme="http://www.idownloadblog.com" term="Let&#039;s Talk Jailbreak" /><category scheme="http://www.idownloadblog.com" term="Podcast" /> <summary type="html"><![CDATA[Welcome to episode 3 of Let&#8217;s Talk Jailbreak. In this episode, Sebastien and I discuss iOS 6.1.3, Apple&#8217;s perception of jailbreakers, the previous week&#8217;s ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-214183" alt="Lets_Talk_Jailbreak_Podcast_Cover" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/Lets_Talk_Jailbreak_Podcast_Cover.jpg" width="400" height="400" /></p>
<p>Welcome to episode 3 of <a href="http://www.idownloadblog.com/tag/lets-talk-jailbreak/">Let&#8217;s Talk Jailbreak</a>. In this episode, Sebastien and I discuss iOS 6.1.3, Apple&#8217;s perception of jailbreakers, the previous week&#8217;s jailbreak tweaks, how we met, a sleeper jailbreak tweak, an update on the progress of the podcast, and much more.</p>
<p>Like last week, this week&#8217;s episode again takes into account some of your suggestions. For instance, some of you will be happy to find a brief introduction to the podcast. Take a look inside for the iTunes links, direct download links, and more.(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/">Lets Talk Jailbreak 03: What type of socks are you wearing?</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/">Lets Talk Jailbreak 03: What type of socks are you wearing?</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link href="http://traffic.libsyn.com/idownloadblog/Lets_Talk_Jailbreak_-_003_-_What_type_of_socks_are_you_wearing.m4a" rel="enclosure" length="0" type="audio/mpeg" />
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/#comments" thr:count="45"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/lets-talk-jailbreak-03-what-type-of-socks-are-you-wearing/feed/atom/" thr:count="45"/>
<thr:total>45</thr:total>
</entry>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Wake up to the date, temperature and more with Wake Info]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/" />
<id>http://www.idownloadblog.com/?p=214439</id>
<updated>2013-03-27T02:46:56Z</updated>
<published>2013-03-27T02:46:35Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Alarm Clock" /><category scheme="http://www.idownloadblog.com" term="Cydia" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="Jailbreak" /><category scheme="http://www.idownloadblog.com" term="Jailbreak Apps &amp; Tweaks" /> <summary type="html"><![CDATA[What&#8217;s the first thing you do when you hear your alarm clock go off in the morning? If you&#8217;re like me, then after hitting ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-214484" alt="wake info 1" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/wake-info-1.png" width="500" height="441" /></p>
<p>What&#8217;s the first thing you do when you hear your alarm clock go off in the morning? If you&#8217;re like me, then after hitting the snooze button a couple of times, you look at your phone to see what time it is and if you missed any messages overnight.</p>
<p>But wouldn&#8217;t it be nice if you could get this kind of information without having to <em>look</em> at your phone? That way you could skip that part of your morning routine and go right to stretching, or whatever else you do. Well you can, with Wake Info&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/">Wake up to the date, temperature and more with Wake Info</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/">Wake up to the date, temperature and more with Wake Info</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/#comments" thr:count="11"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/wake-info-jailbreak-tweak/feed/atom/" thr:count="11"/>
<thr:total>11</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[What you need to know about Apple&#8217;s tweaked A1428 iPhone 5]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/" />
<id>http://www.idownloadblog.com/?p=214427</id>
<updated>2013-03-27T03:01:16Z</updated>
<published>2013-03-27T01:26:12Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="AWS" /><category scheme="http://www.idownloadblog.com" term="Cellular" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="T-Mobile" /> <summary type="html"><![CDATA[Earlier today, the nation&#8217;s fourth-largest wireless carrier T-Mobile USA annuounced it will start officially selling Apple&#8217;s iPhone on April 12. And in dropping annual ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-214352" alt="T-Mobile (iPhone coming soon teaser)" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/T-Mobile-iPhone-coming-soon-teaser.png" width="593" height="441" /></p>
<p>Earlier today, the nation&#8217;s fourth-largest wireless carrier <a href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/">T-Mobile USA annuounced </a>it will start officially selling Apple&#8217;s iPhone on April 12. And in dropping annual contracts in favor of monthly installments, the telco unveiled the new <a href="http://www.t-mobile.com/cell-phone-plans">Simple Choice Plan</a> and <a href="http://t-mobile-coverage.t-mobile.com/hspa-mobile-broadband">LTE coverage</a> in seven major U.S. cities.</p>
<p>Additional details trickled in post-announcement and one particular tidbit has immediately captured our attention: Apple has actually troubled to re-tool the AT&amp;T iPhone 5 for the Deutsche Telekom-owned carrier.</p>
<p>The re-jigged hardware now supports T-Mobile&#8217;s Advanced Wireless Services (AWS) bandwidths, but the change in turn has affected existing AT&amp;T customers who plan on switching to T-Mobile. Full details are right after the break&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/">What you need to know about Apple&#8217;s tweaked A1428 iPhone 5</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/">What you need to know about Apple&#8217;s tweaked A1428 iPhone 5</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/#comments" thr:count="35"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/apple-aws-t-mobile-iphone/feed/atom/" thr:count="35"/>
<thr:total>35</thr:total>
</entry>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Quickly enable the Passcode on your device with TapTapPass]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/" />
<id>http://www.idownloadblog.com/?p=214234</id>
<updated>2013-03-27T04:04:22Z</updated>
<published>2013-03-27T00:21:11Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Cydia" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="Jailbreak" /><category scheme="http://www.idownloadblog.com" term="Jailbreak Apps &amp; Tweaks" /><category scheme="http://www.idownloadblog.com" term="Passcode" /><category scheme="http://www.idownloadblog.com" term="Password" /> <summary type="html"><![CDATA[By default, it takes you at least 6 steps to enable your device&#8217;s Passcode from your Home screen. You have to launch the Settings ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-medium wp-image-214434" alt="taptappass1" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/taptappass1-373x400.png" width="373" height="400" /></p>
<p>By default, it takes you at least 6 steps to enable your device&#8217;s Passcode from your Home screen. You have to launch the Settings app, navigate through a couple of screens to the Passcode Lock window, and set it up.</p>
<p>While this process is just fine for folks who keep their iOS devices Passcode-protected at all times, it&#8217;s fairly tedious for those that only enable the security feature every once in a while. Luckily, there&#8217;s TapTapPass&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/">Quickly enable the Passcode on your device with TapTapPass</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/">Quickly enable the Passcode on your device with TapTapPass</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/#comments" thr:count="12"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/taptappass-jailbreak-tweak/feed/atom/" thr:count="12"/>
<thr:total>12</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[IDC: Apple within spitting distance of Samsung in smart connected devices]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/" />
<id>http://www.idownloadblog.com/?p=214332</id>
<updated>2013-03-26T23:44:52Z</updated>
<published>2013-03-26T22:28:27Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="IDC" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="MacBook" /><category scheme="http://www.idownloadblog.com" term="Samsung" /><category scheme="http://www.idownloadblog.com" term="Survey" /> <summary type="html"><![CDATA[Research firm IDC today shared an interesting data point which again reminds us that the mobile game has pretty much come down to the ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-192849" alt="Apple devices 001 (iPad, iPhone 5, MacBook Air)" src="http://media.idownloadblog.com/wp-content/uploads/2012/12/Apple-devices-001-iPad-iPhone-5-MacBook-Air1.jpg" width="593" height="394" /></p>
<p>Research firm IDC today shared an interesting data point which again reminds us that the mobile game has pretty much come down to the epic fight for supremacy between California-based Apple and Seoul-headquartered Samsung group. Combined shipments of desktop and notebook PCs, tablets and smartphones rose to 378 million units in the fourth quarter of 2012, accounting for $168 billion in quarterly sales.</p>
<p>One particular data point has piqued our interest: thanks to the (sarcasm alert) &#8220;disappointing&#8221; iPhone 5 and &#8220;overpriced&#8221; iPad mini, Apple closed the gap with the South Korean giant, having accounted for a 20.3 percent unit share versus 21.2 percent for its rival.</p>
<p>And, of course, when you narrow down the analysis to just revenues, Apple&#8217;s high-margin business has allowed the company to pull in the market-leading 30.7 percent revenue versus 20.4 percent revenue share for Samsung.</p>
<p>In other words, nearly one out of every three dollars spent on desktop/notebook PCs, smartphones and tablets in Q4 2012 went to Apple, with Samsung taking one out of each five bucks&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/">IDC: Apple within spitting distance of Samsung in smart connected devices</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/">IDC: Apple within spitting distance of Samsung in smart connected devices</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/#comments" thr:count="6"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/idc-apple-samsung-smart-connected-devices/feed/atom/" thr:count="6"/>
<thr:total>6</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[Capcom puts some games on 99-cent Easter sale]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/" />
<id>http://www.idownloadblog.com/?p=214275</id>
<updated>2013-03-26T21:24:40Z</updated>
<published>2013-03-26T21:23:32Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Capcom" /><category scheme="http://www.idownloadblog.com" term="Deal" /><category scheme="http://www.idownloadblog.com" term="Games" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPad Mini" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPod Touch" /><category scheme="http://www.idownloadblog.com" term="Promotions" /> <summary type="html"><![CDATA[If you&#8217;re looking for bargain deals on iPhone and iPad games ahead of Easter, the Japanese games maker Capcom has you covered. The company ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-214399" alt="Street Fighter X Tekken Mobile (iPad screenshot)" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/Street-Fighter-X-Tekken-Mobile-iPad-screenshot.jpg" width="593" height="395" /></p>
<p>If you&#8217;re looking for bargain deals on iPhone and iPad games ahead of Easter, the Japanese games maker Capcom has you covered. The company has reduced some of its popular iOS titles down to the 99-cent price point, including several installments in its <em>Street Fighter</em> series and <em>Mega Man X</em>, a nice arcade-quality action platformer with crisp Retina graphics.</p>
<p>Capcom does not specify when the promotion will end so best thing you act now if you&#8217;re a fan of these games&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/">Capcom puts some games on 99-cent Easter sale</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/">Capcom puts some games on 99-cent Easter sale</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/#comments" thr:count="2"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/capcom-puts-some-games-on-99-cent-easter-sale/feed/atom/" thr:count="2"/>
<thr:total>2</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[Quick review: Handy Photo for iPhone and iPad]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/handy-photo/" />
<id>http://www.idownloadblog.com/?p=213459</id>
<updated>2013-03-26T18:31:00Z</updated>
<published>2013-03-26T19:15:15Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Apps" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPad Mini" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPhone Photography" /><category scheme="http://www.idownloadblog.com" term="iPod Touch" /><category scheme="http://www.idownloadblog.com" term="New Apps &amp; Games" /><category scheme="http://www.idownloadblog.com" term="Photography" /> <summary type="html"><![CDATA[Sebastien and I share a passion for iPhone photography so when he asked me to take a look at Handy Photo the other day, ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/handy-photo/"><![CDATA[<p><iframe width="500" height="375" src="http://www.youtube.com/embed/wNx7rUjOdeM?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Sebastien and I share a passion for <a href="http://www.idownloadblog.com/iphone-photography/">iPhone photography</a> so when he asked me to take a look at Handy Photo the other day, I was overly excited. So what does this new photography app does that your favorite software can&#8217;t? How about AntiCrop and TouchRetouch, two interesting features that work a lot like content-aware fill in Photoshop?</p>
<p>Or, perhaps you&#8217;ll be impressed by the ability to perform complex touch ups and work with 36-megapixel images (not a typo)? The promo video is a bit cheesy and heavy on superlatives, but it does a nice job highlighting key features of this handy program. I&#8217;ve included more info and a few screenies after the break&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/handy-photo/">Quick review: Handy Photo for iPhone and iPad</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/handy-photo/">Quick review: Handy Photo for iPhone and iPad</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/handy-photo/#comments" thr:count="4"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/handy-photo/feed/atom/" thr:count="4"/>
<thr:total>4</thr:total>
</entry>
<entry>
<author>
<name>Jim Gresham</name>
<uri>http://www.idownloadblog.com/author/jimgresham</uri>
</author>
<title type="html"><![CDATA[Bluelounge releases Mika, one stand to rule them all]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/" />
<id>http://www.idownloadblog.com/?p=214238</id>
<updated>2013-03-26T18:31:19Z</updated>
<published>2013-03-26T18:45:07Z</published>
<category scheme="http://www.idownloadblog.com" term="Accessories" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="News" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPod Touch" /><category scheme="http://www.idownloadblog.com" term="MacBook" /><category scheme="http://www.idownloadblog.com" term="MacBook Air" /><category scheme="http://www.idownloadblog.com" term="Review" /><category scheme="http://www.idownloadblog.com" term="Stand" /> <summary type="html"><![CDATA[It is almost redundant for me to begin another article expressing my love affair with quality iOS device stands, but, for the sake of ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/"><![CDATA[<p><img class="aligncenter size-full wp-image-214250" alt="Bluelounge Mika" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/Bluelounge-Mika.jpg" width="593" height="474" /></p>
<p>It is almost redundant for me to begin another article expressing my love affair with quality iOS device stands, but, for the sake of tradition, allow my introduction sentence to lend credence to my lust. <a href="http://www.bluelounge.com">Bluelounge</a> announced today, their newest product, the <a href="http://www.bluelounge.com/products/mika/">Mika</a>, which is a simple stand for iPad, but strong enough to hold a full size MacBook. Thanks to a buddy at Bluelounge, I was able to get my hands on one for review prior to the announcement&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/">Bluelounge releases Mika, one stand to rule them all</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/">Bluelounge releases Mika, one stand to rule them all</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/#comments" thr:count="4"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/bluelounge-mika/feed/atom/" thr:count="4"/>
<thr:total>4</thr:total>
</entry>
<entry>
<author>
<name>Ed Sutherland</name>
<uri>http://www.idownloadblog.com/</uri>
</author>
<title type="html"><![CDATA[Apple to triple retail presence in India by 2015, own stores still improbable]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/" />
<id>http://www.idownloadblog.com/?p=214331</id>
<updated>2013-03-26T17:54:18Z</updated>
<published>2013-03-26T18:15:10Z</published>
<category scheme="http://www.idownloadblog.com" term="News" /><category scheme="http://www.idownloadblog.com" term="2015" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Apple Stores" /><category scheme="http://www.idownloadblog.com" term="India" /><category scheme="http://www.idownloadblog.com" term="Retail" /> <summary type="html"><![CDATA[After realizing India&#8217;s potential, Apple is now acting to catch up with rival Samsung. The latest sign of Apple&#8217;s new-found interest: a Tuesday report ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-214388" alt="iStore 002" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/iStore-002.jpg" width="593" height="394" /></p>
<p>After realizing India&#8217;s potential, Apple is now acting to catch up with rival Samsung. The latest sign of Apple&#8217;s new-found interest: a Tuesday report claiming the iPhone maker plans to open 200 exclusive stores in the country, tripling the number of locations now available to India&#8217;s mobile consumers.</p>
<p>The push into retailing for Apple reportedly includes importing suppliers to help local franchisers adopt the iconic sleek glass design of other locations selling iPhones, iPads and other devices from the Cupertino firm. Apple&#8217;s retail efforts follow a turn-around in iPhone sales marked by direct-to-consumer sales and other marketing adjustments&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/">Apple to triple retail presence in India by 2015, own stores still improbable</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/">Apple to triple retail presence in India by 2015, own stores still improbable</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/#comments" thr:count="6"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/apple-india-retail-triple-2015/feed/atom/" thr:count="6"/>
<thr:total>6</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[T-Mobile finally lands the iPhone: available April 12, $99 upfront]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/" />
<id>http://www.idownloadblog.com/?p=214337</id>
<updated>2013-03-26T17:27:42Z</updated>
<published>2013-03-26T15:49:26Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Carrier" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="T-Mobile" /> <summary type="html"><![CDATA[As expected, T-Mobile USA announced at its &#8220;Uncarrier&#8221; event in New York that it&#8217;s finally become the official distributor of the iPhone, six years after ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/"><![CDATA[<p style="text-align: center;"><img class="alignright size-full wp-image-191498" alt="T-Mobile iPhone 5" src="http://media.idownloadblog.com/wp-content/uploads/2012/12/T-Mobile-iPhone-5.jpg" width="240" height="180" /></p>
<p><a href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/">As expected</a>, T-Mobile USA announced at its <a href="http://www.idownloadblog.com/2013/03/18/tmobile-march-26/">&#8220;Uncarrier&#8221; event</a> in New York that it&#8217;s finally become the official distributor of the iPhone, six years after Apple announced its game-changing smartphone. The company will start offering the iconic device April 12 and has confirmed it&#8217;ll work on its <a href="http://www.idownloadblog.com/2013/03/22/t-mobile-lte-8-cities/">LTE network</a>, which also formally launched on Tuesday. The iPhone 5, of course, also supports T-Mobile&#8217;s speedy HSPA+ covering 225 million people in 229 metropolitan areas.</p>
<p>Unlike AT&amp;T, Verizon and Sprint &#8211; or most of the world&#8217;s carriers for that matter &#8211; the Deutsche Telekom-owned wireless telco will sell Apple&#8217;s device contract-free, tapping its <a href="http://www.idownloadblog.com/2013/01/29/carriers-pay-notice-unsubsidized-iphone/">previously mulled monthly installments</a> in another uncharacteristic industry practice. <em>&#8220;We&#8217;re canceling our membership to the Wireless Carrier Club,&#8221;</em> CEO John Legere quipped at the presser.</p>
<p>Specifically, per T-Mobile&#8217;s <a href="http://newsroom.t-mobile.com/articles/t-mobile-unleashes-iphone-5">press release</a>, you&#8217;ll be paying $99.99 upfront to get an entry-level 16GB iPhone 5, without ever having to put your signature on a two-year service contract. The rest of the device&#8217;s unsubsidized price will be recovered through installment plans requiring you to drop an additional $20 over the next 24 months.</p>
<p>Quickly, do the math in your head: under these terms, the iPhone 5 will set you back $580 in total, a nice $69 saving over the unlocked $649 iPhone 5 on Apple&#8217;s web store&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/">T-Mobile finally lands the iPhone: available April 12, $99 upfront</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/">T-Mobile finally lands the iPhone: available April 12, $99 upfront</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/#comments" thr:count="31"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/t-mobile-finally-lands-the-iphone-available-from-april-12-99-upfront/feed/atom/" thr:count="31"/>
<thr:total>31</thr:total>
</entry>
<entry>
<author>
<name>Ed Sutherland</name>
<uri>http://www.idownloadblog.com/</uri>
</author>
<title type="html"><![CDATA[Munster pops Apple hype balloon: no new gizmos until June&#8217;s iPhone 5S launch]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/" />
<id>http://www.idownloadblog.com/?p=214300</id>
<updated>2013-03-26T15:50:45Z</updated>
<published>2013-03-26T15:20:08Z</published>
<category scheme="http://www.idownloadblog.com" term="News" /><category scheme="http://www.idownloadblog.com" term="Analyst" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Gene Munster" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPhone 5S" /><category scheme="http://www.idownloadblog.com" term="Piper Jaffray" /> <summary type="html"><![CDATA[We&#8217;ve chided Piper Jaffray&#8217;s well-known resident Apple analyst Gene Munster for his repeated predictions of a standalone Apple television set being just around the ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/"><![CDATA[<p><img class="size-full wp-image-141493 alignright" alt="apple-stock" src="http://media.idownloadblog.com/wp-content/uploads/2012/02/apple-stock.jpg" width="255" height="292" />We&#8217;ve chided Piper Jaffray&#8217;s well-known resident Apple analyst Gene Munster for his <a href="http://www.idownloadblog.com/2013/01/22/munster-itv-on-track-for-2013-launch/">repeated</a> <a href="http://www.idownloadblog.com/2012/05/25/munster-itv-in-dec-iphone-5-in-oct/">predictions</a> of a standalone <a href="http://www.idownloadblog.com/tag/itv/">Apple television set</a> being just around the corner. However, this time we&#8217;re giving Munster credit for trying to deflate the hype balloon which has taken Apple stock and consumers for a ride fueled by unreal expectations. The analyst is just the latest Wall Street figure hoping to inject reality into a belief that the Cupertino, Calif. iPhone maker was immune to the vagaries of mortal businesses &#8211; such as down periods.</p>
<p>In a note to his clients, Munster walked a fine line, laying out some uncomfortable numbers for a company that hasn&#8217;t reported negative figures in a decade. Along the way, he also tested the waters of delayed gratification during a time investors appear more like strung-out addicts accustom to quarter after quarter of mind-blowing revenue from Apple&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/">Munster pops Apple hype balloon: no new gizmos until June&#8217;s iPhone 5S launch</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/">Munster pops Apple hype balloon: no new gizmos until June&#8217;s iPhone 5S launch</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/#comments" thr:count="30"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/apple-gene-munster-no-gizmos-until-summer/feed/atom/" thr:count="30"/>
<thr:total>30</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[Apple.com is the world&#8217;s eighth most popular web property]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/" />
<id>http://www.idownloadblog.com/?p=214313</id>
<updated>2013-03-26T15:07:41Z</updated>
<published>2013-03-26T15:02:39Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="ComScore" /><category scheme="http://www.idownloadblog.com" term="Survey" /> <summary type="html"><![CDATA[Research firm comScore today issued a new survey of the world&#8217;s top web properties. Apple.com, which comScore ranked the world&#8217;s eleventh most-popular web site ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-214314" alt="comScore (top 50 web properties, teaser)" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/comScore-top-50-web-properties-teaser.png" width="593" height="463" /></p>
<p>Research firm comScore today issued a new survey of the world&#8217;s top web properties. Apple.com, which comScore ranked the world&#8217;s eleventh most-popular web site last year, climbed to the #8 slot, reflecting the growing popularity of Apple gadgets in the post-Jobs era. Matter of fact the Apple.com web site recorded a 54 percent increase in the number of hits compared to last year.</p>
<p>That&#8217;s a significant difference versus a 38 percent average gain for the top 100 measured web properties and the largest increase in the top ten rankings. It should be noted that the web analytics company now finally includes both hits from desktop as well as mobile devices. Go past the fold for the full breakdown&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/">Apple.com is the world&#8217;s eighth most popular web property</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/">Apple.com is the world&#8217;s eighth most popular web property</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/#comments" thr:count="18"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/comscore-two-web-properties/feed/atom/" thr:count="18"/>
<thr:total>18</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[Logitech unveils colorful new Keyboard Folios for iPad and iPad mini]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/" />
<id>http://www.idownloadblog.com/?p=214306</id>
<updated>2013-03-26T14:40:48Z</updated>
<published>2013-03-26T14:35:16Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Accessories" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="iPad Mini" /><category scheme="http://www.idownloadblog.com" term="Keyboard" /><category scheme="http://www.idownloadblog.com" term="Logitech" /> <summary type="html"><![CDATA[Logitech today launched two new interesting accessories for your iPad: the Keyboard Folio and Keyboard Folio Mini. As the names suggest, the former is ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/"><![CDATA[<p><iframe width="500" height="281" src="http://www.youtube.com/embed/_9wi_OX0Rvo?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><a href="http://www.idownloadblog.com/tag/logitech/">Logitech</a> today launched two new interesting accessories for your iPad: the Keyboard Folio and Keyboard Folio Mini. As the names suggest, the former is for your full-size 9.7-inch iPad and the latter is for its little brother, the 7.9-inch iPad mini. These act as both a protective cover which attaches to your device magnetically and a physical Bluetooth-enabled keyboard with custom iPad shortcuts. Additionally, a hands-free flip stand props up your device in two comfortable viewing angles&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/">Logitech unveils colorful new Keyboard Folios for iPad and iPad mini</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/">Logitech unveils colorful new Keyboard Folios for iPad and iPad mini</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/#comments" thr:count="8"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/logitech-keyboard-folios-ipad/feed/atom/" thr:count="8"/>
<thr:total>8</thr:total>
</entry>
<entry>
<author>
<name>Ed Sutherland</name>
<uri>http://www.idownloadblog.com/</uri>
</author>
<title type="html"><![CDATA[Apple envisions multitouch gestures on blank screens]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/" />
<id>http://www.idownloadblog.com/?p=214274</id>
<updated>2013-03-26T14:15:44Z</updated>
<published>2013-03-26T14:08:22Z</published>
<category scheme="http://www.idownloadblog.com" term="News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPod Touch" /><category scheme="http://www.idownloadblog.com" term="Multitouch" /><category scheme="http://www.idownloadblog.com" term="Patent" /> <summary type="html"><![CDATA[Apple Tuesday was granted an intriguing multitouch patent with a wrinkle: no screen display necessary. Instead of glancing down at your iPod during a ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-115205" alt="iPad finger touching" src="http://media.idownloadblog.com/wp-content/uploads/2011/08/iPad-finger-touching-e1313459827308.jpeg" width="593" height="324" /></p>
<p>Apple Tuesday was granted an intriguing multitouch patent with a wrinkle: no screen display necessary. Instead of glancing down at your iPod during a workout to adjust the volume or skip past an annoying track, you simply touch the screen. The patent, first filed in 2009, opens up a number of potential benefits, including extending battery life.</p>
<p>Rather than your iPod nano&#8217;s screen displaying controls such as sliders, Apple envisions devices accepting multitouch user input even when a screen itself is blank. Not only would this open the potential for eliminating hardware controls, but the technology may also become part of everyday devices ranging from your iPhone, iWatch or even iGlasses, should Apple decide to compete with Google&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/">Apple envisions multitouch gestures on blank screens</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/">Apple envisions multitouch gestures on blank screens</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/#comments" thr:count="27"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/apple-patent-no-screen-controls/feed/atom/" thr:count="27"/>
<thr:total>27</thr:total>
</entry>
<entry>
<author>
<name>Jim Gresham</name>
<uri>http://www.idownloadblog.com/author/jimgresham</uri>
</author>
<title type="html"><![CDATA[MechWarrior explodes onto iPhone]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/" />
<id>http://www.idownloadblog.com/?p=213983</id>
<updated>2013-03-25T23:24:56Z</updated>
<published>2013-03-26T12:00:18Z</published>
<category scheme="http://www.idownloadblog.com" term="iPad" /><category scheme="http://www.idownloadblog.com" term="New Apps &amp; Games" /><category scheme="http://www.idownloadblog.com" term="App Store Apps" /><category scheme="http://www.idownloadblog.com" term="Games" /><category scheme="http://www.idownloadblog.com" term="iPad Mini" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="iPod Touch" /><category scheme="http://www.idownloadblog.com" term="Review" /> <summary type="html"><![CDATA[Growing up in the 90&#8242;s provided the extreme advantage of spending late nights in front of Mech Warrior 2. Aside from King&#8217;s Quest V, ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/"><![CDATA[<p><img class="aligncenter size-full wp-image-213986" alt="MechWarrior Splash Logo" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/MechWarrior-Splash-Logo.png" width="593" height="242" /></p>
<p>Growing up in the 90&#8242;s provided the extreme advantage of spending late nights in front of Mech Warrior 2. Aside from King&#8217;s Quest V, Mech Warrior 2 is one of the few PC games I ever completed from start to finish. When we were contacted by Personae Studios to review their newest build of <a href="http://click.linksynergy.com/fs-bin/stat?id=2OECV7Ib8vg&amp;offerid=146261&amp;type=3&amp;subid=0&amp;tmpid=1826&amp;RD_PARM1=https%253A%252F%252Fitunes.apple.com%252Fus%252Fapp%252Fmechwarrior-tactical-command%252Fid557552094%253Fmt%253D8%2526uo%253D4%2526partnerId%253D30">MechWarrior: Tactical Command</a>, I had no hesitations to agree. Moving from a FPS console and desktop option to RTS, the iOS Mech Warrior experience will be appreciated by MechWarrior fans, old and new&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/">MechWarrior explodes onto iPhone</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/">MechWarrior explodes onto iPhone</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/#comments" thr:count="6"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/26/mechwarrior-tactical-command/feed/atom/" thr:count="6"/>
<thr:total>6</thr:total>
</entry>
<entry>
<author>
<name>Christian Zibreg</name>
<uri>http://www.idownloadblog.com/author/dujkan/</uri>
</author>
<title type="html"><![CDATA[T-Mobile will talk iPhone tomorrow]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/" />
<id>http://www.idownloadblog.com/?p=214235</id>
<updated>2013-03-25T21:50:58Z</updated>
<published>2013-03-25T21:40:33Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Carrier" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="T-Mobile" /> <summary type="html"><![CDATA[T-Mobile, the nation&#8217;s fourth-largest carrier and the only major U.S. telco without the iPhone and LTE network, will discuss the iconic smartphone at tomorrow&#8217;s ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/"><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-191498" alt="T-Mobile iPhone 5" src="http://media.idownloadblog.com/wp-content/uploads/2012/12/T-Mobile-iPhone-5.jpg" width="593" height="444" /></p>
<p>T-Mobile, the nation&#8217;s fourth-largest carrier and the only major U.S. telco without the iPhone and LTE network, will discuss the iconic smartphone at tomorrow&#8217;s event, one publication has it on good authority. CNET has confirmed that the iPhone will play a part at T-Mobile&#8217;s <a href="http://www.idownloadblog.com/2013/03/18/tmobile-march-26/">&#8220;Uncarrier&#8221; event tomorrow</a>, meaning we can now confidently speculate that the Deutsche Telekom-owned telco will formally announce it will be carrying Apple&#8217;s handset and share details regarding its unsubsidized pricing structure&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/">T-Mobile will talk iPhone tomorrow</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/">T-Mobile will talk iPhone tomorrow</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/#comments" thr:count="15"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/25/t-mobile-iphone-march-26/feed/atom/" thr:count="15"/>
<thr:total>15</thr:total>
</entry>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Chevrolet highlights Siri Eyes Free feature in new TV ad]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/" />
<id>http://www.idownloadblog.com/?p=214171</id>
<updated>2013-03-25T23:15:38Z</updated>
<published>2013-03-25T20:56:35Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Chevrolet" /><category scheme="http://www.idownloadblog.com" term="Commercial" /><category scheme="http://www.idownloadblog.com" term="Eyes Free" /><category scheme="http://www.idownloadblog.com" term="Siri" /><category scheme="http://www.idownloadblog.com" term="TV" /><category scheme="http://www.idownloadblog.com" term="Video" /> <summary type="html"><![CDATA[Last month, we told you that Chevy started offering Siri Eyes Free in its 2013 Sonic and Spark models, officially making it the first ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-medium wp-image-214223" alt="chevy_sonic_siri_ad" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/chevy_sonic_siri_ad-600x337.jpg" width="600" height="337" /></p>
<p>Last month, <a href="http://www.idownloadblog.com/2013/02/13/spark-and-sonic-eyes-free/">we told you</a> that Chevy started offering Siri Eyes Free in its 2013 Sonic and Spark models, officially making it the first automaker, out of the 9+ that will support it, to incorporate the feature into a production vehicle.</p>
<p>Today, the car company posted a new TV ad for its 2013 Sonic sedan showcasing the new Siri integration, which gives compatible users hands-free access to the digital assistant from a built-in button on the car&#8217;s steering wheel&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/">Chevrolet highlights Siri Eyes Free feature in new TV ad</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/">Chevrolet highlights Siri Eyes Free feature in new TV ad</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/#comments" thr:count="9"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/25/chevy-showcases-siri-love/feed/atom/" thr:count="9"/>
<thr:total>9</thr:total>
</entry>
<entry>
<author>
<name>Cody Lee</name>
<uri>http://www.idownloadblog.com/author/cody/</uri>
</author>
<title type="html"><![CDATA[Apple&#8217;s new US iPhone promotion offers free next day shipping on all models]]></title>
<link rel="alternate" type="text/html" href="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/" />
<id>http://www.idownloadblog.com/?p=214206</id>
<updated>2013-03-25T20:36:55Z</updated>
<published>2013-03-25T20:36:55Z</published>
<category scheme="http://www.idownloadblog.com" term="iPhone News" /><category scheme="http://www.idownloadblog.com" term="Apple" /><category scheme="http://www.idownloadblog.com" term="Apple Store" /><category scheme="http://www.idownloadblog.com" term="iPhone" /><category scheme="http://www.idownloadblog.com" term="Promotions" /> <summary type="html"><![CDATA[Since Samsung unveiled its Galaxy S4 handset earlier this month, Apple has been on an iPhone marketing blitz. In addition to its two new ...]]></summary>
<content type="html" xml:base="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/"><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-214220" alt="iphone shipping promo" src="http://media.idownloadblog.com/wp-content/uploads/2013/03/iphone-shipping-promo.png" width="550" height="356" /></p>
<p>Since Samsung unveiled its <a href="http://www.idownloadblog.com/2013/03/14/samsung-galaxy-s-4/">Galaxy S4 handset</a> earlier this month, Apple has been on an iPhone marketing blitz. In addition to its <a href="http://www.idownloadblog.com/2013/03/11/new-sweet-iphone-commercial/">two new iPhone ads</a>, it&#8217;s also posted a <a href="http://www.idownloadblog.com/2013/03/17/apples-new-why-iphone-ad/">&#8216;Why iPhone&#8217; page</a> on its website and launched an email campaign.</p>
<p>And today, it continues the push with a new iPhone promotion for US customers. Effective immediately, the company is offering free next day shipping on all of its iPhone models ordered through its online webstore, regardless of price&#8230;(...)<br/>Read the rest of <a href="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/">Apple&#8217;s new US iPhone promotion offers free next day shipping on all models</a></p>
<hr />
<p><small>
"<a href="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/">Apple&#8217;s new US iPhone promotion offers free next day shipping on all models</a>" is an article by <a href="http://www.idownloadblog.com">iDownloadBlog.com</a>. <br/>Make sure to <a href="http://twitter.com/iDownloadBlog">follow us on Twitter</a>, <a href="http://www.facebook.com/iPhoneDownloadBlog">Facebook</a>, and <a href="https://plus.google.com/u/0/b/111910843959038324995/">Google+</a>.
</small></p>]]></content>
<link rel="replies" type="text/html" href="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/#comments" thr:count="4"/>
<link rel="replies" type="application/atom+xml" href="http://www.idownloadblog.com/2013/03/25/apples-new-iphone-promo/feed/atom/" thr:count="4"/>
<thr:total>4</thr:total>
</entry>
</feed>