Getting full details from a link in the RSS data - iphone

I have an RSS link in which there are rss links to pages such as AFL,Football, Basketball,Cricket etc. When I click that the RSS links are obtained. For example in case of AFL the rss link directs to the page
http://www.sportal.com.au/rss/australia/afl.xml
Here there are tags called "description" but there is only a part of description inside that tag. The full description is present inside the link present inside the tag "link". Here for example the link is
http://www.sportal.com.au/afl-news-display/pies-duo-set-to-feature-160240
How can I get these full description from the above link? I'm in such a urgency. Any help is appreciated.
//The Main Link is
//http://www.sportal.com.au/rss
Thanks

I also faced same problem but here one RSSFeed code . it will be Help to u i am sure,down load the code and pass the ur RSS Feed url simple...
http://www.raywenderlich.com/2636/how-to-make-a-simple-rss-reader-iphone-app-tutorial

If I have understand your problem correctly then
For RSS parsing - https://github.com/mwaterfall/MWFeedParser
MWFeedParser is the best Open Source option for you !!

Related

Get full-text articles from RSS Feed

Hello I am using GDataXML to parse RSS Feeds.
However most of todays feeds doesn't show the full text article. So most of the times I end up with just a tiny piece of the whole thing.
I see this feature in a lot of iPhone and iPad readers - it kinda fetches the article from the web and put it in full text.
So how do i do that?
My idea is this - the root element starts with the start of the article.
So if the root element have [article]
i need to go to the website, fetch the html code between the starting divs, and then display it in my app.
So how do i get the code between those divs? regular expressions or what? I want example thanks.
And finally how do i display images after I get the full article in html format?
Thanks guys and regards.
use MWFeedParser you will get RSS Feeds in
identifier, title, link, date, updated, summary, content, enclosures
I use MWFeedParser as well, because it will get all the elements of a feed entry, but you are correct that it will not do a "deep dive" into all of the links in the feed entry.
If you want to bring in the full content from the link, and the full content from the enclosures (such as audio or video from a podcast), you are basically talking about saving the web page for offline viewing. For a full html page, you would have to save that HTML, plus crawl the whole page and save the images, and change the path of those images so that you would be able to load it offline. It's not really the job of the RSS applications to save HTML content for offline use, but to get the elements of the RSS feed. Once you have all the links you want to save for offline use, you need to provide the code that will take a URL and save it offline.
I did a search for ios save html offline and found this post which seems pretty positive using ASIHttpRequest to save a page offline: https://stackoverflow.com/a/6698854/1072068. I would recommend you try using something like that once you get the parts of the rss feed entry from MWFeedParser.

jquery popup in salesforce standard detail page

i want to show a jquery popup message after the user creates any record (say Lead ) and lands in the standard lead detail page .... suggestions please ..
also, how to include js files in sidebar component ??
thanks for the responses .
Check out this very helpful post by Tehnrd:
http://www.tehnrd.com/show-and-hide-buttons-on-page-layouts/
He details how to include JavaScript files using the sidebar component in a video.
About your popup, I use ModalPopup : http://www.modalpopups.com/demos/0.2/demo.htm
it's pretty simple to use and there is a lot of example in the doc.

facebook meta tags issue

am having a wordpress site
http://wp1.mummypages.ie/show-pictures/
i want to edit the description tag to be shared on facebook when i click like, so when i edit the header file which calls get_facebook_meta function to meta type="description content="facebook_tag" ,facebook still recieves the old description content..
I have to edit it at any cost and i don't understand the reason from where it's fetching the description and how should i edit it??
can anyone help me?? will hugely appreciate it..
Thanks in Advance :)
Please see:
http://codex.wordpress.org/Meta_Tags_in_WordPress
To add meta tags to your site, simply add them to the header.php template file in your WordPress Theme

How to share a few specific elements of a page only

I have a page of products on my website with a share button on each, now how can I tell facebook to automatically select the title and image of the product shared rather than the whole page.
A link to my site
The site is written using php on smarty type script with tpl files,
ps i dont really know php very well.
Thanks in advance :)
A server side scripting language would be the easiest:
in php you could share the page + an extra variable , then if your page detects this variable you can set specific meta data.
http://www.fancydressclothing.net/categories/49/1950s-Costumes.php?product=1
And in php fetch the correct data for product 1 and set the meta data:
http://developers.facebook.com/docs/opengraph/
You should use a canonical URL for each product which will help in two ways. One with the facebook linter getting the correct og tags. And two, helping your SEO rankings too.

facebook like button fetches wrong text

i am totally new on stackoverflow and i am pretty green in editing.
anyways maybe i can find some help here. i am running a blog
http://piecesofberlin.com - on every post u can find a facebook like button on the bottom,
and a share link on the right sidebar. i am using a wordpress fb likebutton plug in.
when i like a post the thumb nail of the picture and the title appears, but also
"You may use these HTML tags and attributes:
" which is shown on the very bottom of the post....how can i get rid of it???
any ideas?
thx in advance
flo
Ok - the information that the "send" button displays are to do with your og:tags. Each post has to have a unique url (which it does becuase you managed to place different like buttons on each post). The og:tags need to be present for each post too. I see you placed the og:image tag only - you'll need more information. You can user this great took - URL Debugger to test your urls, and you can use this reference - Open Graph Protocol to see exactly what tags you must use.