I like the The Architectural Journal, but I find the "Architecture Journal Reader" not very helpful, mainly as I just want to read it in all my other feeds (as Brian on Software has said as well) - there is no way to get an RSS feed for it - which is annoying.
and you know what happens when you annoy a programmer..
I poked around the application directory and found that JournalReader.exe.config has a string "http://files.skyscrapr.net/users/JournalReader/data/master.xml" defined as DataFeedUri
this file contains sections for each language (English, Spanish etc) and links to the RSS feed - for english it's "en/toplevel.xml"
And guess what, toplevel.xml is an RSS feed!
though its not updated very quickly, and none of the links are correct ;-(
In addition toplevel.xml defines a set of sections (one for each edition of the journal) which you can then get the full xml (NITF format) for each article (I had to guess the location from looking at how it references images)
so an example full path is:
http://files.skyscrapr.net/users/JournalReader/data/en/Journal18/Jour18intro.doc.xml
note that in toplevel.xml the links all point to the same place which makes the feed unusable (clicking to read the full story takes to a page about Domain-Specific Modeling every time). The other problem is that the files don't get updated at the same time of a new edition - I guess someone has to remember to regenerate and upload them....
please MS. just make this available as a working RSS feed!
Showing posts with label rss. Show all posts
Showing posts with label rss. Show all posts
Thursday, June 18, 2009
Monday, November 10, 2008
Dynamic tag cloud v1.2
A small update to the tag cloud to fix an issue with cross domain requests. The issue is caused by some RSS servers not having a crossdomain.xml file which is used by Flash and Silverlight to check if cross domain requests are allowed.
As a short term fix this version now proxies the request via figmentengine.com - in a later version we may need to be able to disable this (in the case where you want to host the silverlight app on your server)
So this now allows me to create tag cloud from other sites, such as the Guardian's Comment is free:
To insert into your blog use (under dashboard, layout, edit html, ensure that expand widget templates is checked).
Find the following:
<div id='sidebar-wrapper'>
<b:section class='sidebar' id='sidebar' preferred='yes'>
insert widget here
<b:widget id='Label2' locked='false' title='Dynamic Tag Cloud' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content' id='feCloud' style='text-align: center;'/>
<script src='http://www.figmentengine.com/tagCloud/feCloudv1.2.js' type='text/javascript'/>
<script type='text/javascript'>
var feCloudElementId = 'feCloud';
var feCloudFeedAddress = 'http://feedproxy.google.com/FigmentEngine';
var feCloudNavigateFormat = 'http://blog.figmentengine.com/search/label/{0}';
var feCloudSize = 400;
feTagCloudLoad(feCloudElementId, feCloudFeedAddress, feCloudNavigateFormat, feCloudSize, feCloudSize);
</script>
</b:includable>
</b:widget>
In order to start using this version, you need to change your javascript to reference v1.2 of the js file
Subscribe to:
Posts (Atom)