Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsNews FeedsNews FeedsBuilt-in DNN feed aggregator - Did You Know?Built-in DNN feed aggregator - Did You Know?
Previous
 
Next
New Post
9/16/2007 1:49 PM
 

I got that working, but it has exactly the same problems:

<?xml version="1.0" encoding="utf-8"?>
<opml version="2.0">
   <head>
       <title>Quiblit Blogging</title>
       <ownerName>Quiblit.com</ownerName>
   <ownerEmail>admin@quiblit.com</ownerEmail>
 <docs>http://www.opml.org/spec2</docs>
   </head>
  <body>
<outline text="Hosted Blogs" type="none" category="Tab">
    <outline text="Posts" type="none" category="Section">
        <outline text="Awedacity" type="rss" category="Category" xmlUrl="http://awedacity.quiblit.com/?feed=rss2" />
        <outline text="intentionally blank page" type="rss" category="Category" xmlUrl="http://feeds.feedburner.com/ThisPageIntentionallyLeftBlank" />
        <outline text="august philippic" type="atom" category="Category" xmlUrl="http://augustphilippic.quiblit.com/index.php/feed/atom/" />
        <outline text="Who Put Back the Clock?" type="atom" category="Category" xmlUrl="http://clock.quiblit.com/?feed=atom" />
        <outline text="Man Bites Blog" type="rss" category="Category" xmlUrl="http://feeds.feedburner.com/blogspot/johnmcg" />
        <outline text="Bad Medicine" type="atom" category="Category" xmlUrl="http://badmedicine.quiblit.com/index.php/feed/atom/" />
        <outline text="Wordflare" type="rss" category="Category" xmlUrl="http://www.wordflare.com/?feed=rss2" />
        <outline text="Quiblit Host Blog" type="atom" category="Category" xmlUrl="http://hostblog.quiblit.com/index.php/feed/atom/" />
         </outline>
    <outline text="Comments" type="none" category="Section">
        <outline text="Awedacity" type="rss" category="Category" xmlUrl="http://awedacity.quiblit.com/index.php/comments/feed/" />
         <outline text="intentionally blank page" type="rss" category="Category" xmlUrl="http://blankpage.quiblit.com/index.php/comments/feed/" />       
         <outline text="august philippic" type="rss" category="Category" xmlUrl="http://augustphilippic.quiblit.com/index.php/comments/feed/" />
         <outline text="Who Put Back the Clock?" type="rss" category="Category" xmlUrl="http://clock.quiblit.com/?feed=comments-rss2" />
         <outline text="Man Bites Blog" type="rss" category="Category" xmlUrl="http://manbitesblog.quiblit.com/index.php/comments/feed/" />
         <outline text="Bad Medicine" type="rss" category="Category" xmlUrl="http://badmedicine.quiblit.com/index.php/comments/feed/" />
         <outline text="Wordflare" type="rss" category="Category" xmlUrl="http://www.wordlfare.com/index.php/comments/feed/" />
         <outline text="Quiblit Host Blog" type="rss" category="Category" xmlUrl="http://hostblog.quiblit.com/index.php/comments/feed/" />
  </outline>
</outline>
</body>
</opml>

Sorry to be such a pain about this.  My main problem is that I have zero knowledge of XML/XSL.

 
New Post
9/16/2007 2:21 PM
 

I noticed that issue with the news.opml for the google feed, as well.  When, I looked at your code and that code, I think I found out why.  Somewhere in the rendering scripts, the length of the content needs to be specified, otherwise it does not work correctly.  Still not completely through the code, but take a look at the example below:

Doesn't show the 'pictures' issue - actually gifs or images or other types of linked content

  <outline text="World News" type="rss" category="Category" xmlUrl="http://feeds.reuters.com/reuters/worldNews" />
  

Does render the 'pictures' and linked content

<outline text="World News" type="rss" category="Category/@@3000px" xmlUrl="http://feeds.reuters.com/reuters/worldNews" />

The difference being that the code appears to use the '/@@####px'  qualifier in the category attribute to specify length of the content.  I suspect without it, the missing links can't be rendered properly.

Change your opml to include that specification and it works.

Now, you could try placing a News.opml file in your Portals/0 area to see if it picks up that text file for you.  Remember, the opml text in the custom text area only uses the outline parts of the opml, and the text file has to have the opml header and end tags, as I showed earlier.

Try it out, and let me know how it goes.

 
New Post
9/16/2007 3:03 PM
 

Using the Category/@@px renders an IFrame-like view.  It's just what anybody would see if they went to that site and clicked on the Feed button.  Sure, everything works, but I'm not really adding any value.  The ####px, it seems to me, specifies the width of the frame, not the length.

 
New Post
9/16/2007 3:19 PM
 

Well, it's a browser object, though I can see why you say iframe, because that's what it looks like.  Category/@@####px is the page length of the content, not the width.  If you change it to 600 rather than 3000, you'll see that a scroll bar show up to allow vertical scrolling not horizontal, at least that's what my implementation shows.

As far as adding value, well that's a personal assessment.  I see it as a very useful module, if for this reason alone - it allows me to place catergorized content in a news agregatted format on my site.  What you do with it is up to you, but if you don't think it has value, you don't have to use it, I'm just offering my views on it, and helping document the setup, and config stuff that folks won't find easily.

If you read my blog, the value I find in using this type of module is that I need that type of functionality to help keep up with all of the technical information that encompasses my job as an administrator. Could I do it with other apps, yes.  The thing that I like about it, though, is that DNN includes it.  I've got my own news application agregattor windows application, but this module allows me to have access to my custom opml from the web, not tied to my laptop, or desktop workstation.  So, I'll be exploiting it as long as it is available.

If you have a site that markets products, you can create a custom opml file that lists them and links to product descriptions, just like the Solution Explorer does.  I think that is more than value returned enough for me.  But as in all things, you have to decide for yourself.

Cheers

 
New Post
9/16/2007 4:10 PM
 

Don't get me wrong.  It's a beautiful little module.  I can see a million uses for it.  I'm just frustrated because I lack the knowledge to put a professional polish on the output.

I can hardly wait to see how this kind of functionality gets incorporated into the new News module.  I'm fairly salivating.

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsNews FeedsNews FeedsBuilt-in DNN feed aggregator - Did You Know?Built-in DNN feed aggregator - Did You Know?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out