Blog Articles by tag: Web
RSS feedAutoTag v1.3 released
12 Feb 2010
Ok, so following an email from Darren Ferguson; Umbraco MVP nominee, I finally got round to updating my AutoTags project.
Theres been some pretty hefty updates, mainly to the user interface. As the original UI was, well, rubbish!! Hopefully it looks a bit better anyway. I've also added better notifications when errors occur, as well as adding errors to the Umbraco Log table.
Also, as requested by an Umbraco community member, I have enabled the ability to choose when node properties are used for tag generation. By default, all properties are used, but its possible to limit the number of properties using a semi-colon seperated string in appSettings section of web.config, e.g:
You can download it from my read more
Get Node or Node ID by URL
30 Nov 2009
Hi guys
I know I haven't written any articles for a while, this is because I've changed jobs, moved house and been to the land down under for two weeks so I've been pretty busy!
This article; as the title suggests, is a short article demonstrating how to retrieve a node via the URL of a page. This has probably been covered before numerious times, but this is as much a reference for myself.
Moving on, most of you will probably be saying, why not use:
Node.GetCurrent();Well, if you are using lightboxes to display content from a node, and want to use an property from the current node (not the lightbox node) within the lightbox, using Node.GetCurrent() will return the lightbox node.
The first (and most important) part is to get the URL. This can be done by using the Request.UrlReferrer.Segments collection...read more
AutoTags Umbraco DataType
20 Aug 2009
One of my biggest irritations as a web developer is populating web pages with content. Ok, it needs to be done, but it can get a little tedious. One of the more tedious tasks are SEO, and page categorisation. So wouldn't it be good if you could automatically generate keywords that relate to the page content, categories for news articles and tags for blog posts?
With this in mind I have written a Custom DataType for the Umbraco CMS (Version 4) which does exactly this. I've ported Dan Grossman's Open Calais class; written in PHP, to the .Net Framework so it can be used with Umbraco. You can find Dan's PHP class here.
It takes the content from the body of the web page and using the OpenCalais API, generates a list of words which relate to the content. You can then select the words which...read more
Python Twitter API v1
17 Aug 2009
Ok so this is a first on many levels; my first blog post for this site as well as my first project, app, library (call it what you will) that I am releasing into the ether. As the Twitter phenomenon has very quickly gathered speed, more and more people are trying to access its features; whether its pulling in your latest tweets into your webpage or tweeting directly from your desktop! One of the issues which some people are finding is that quite often if their website is hosted by a company, they may not have permission to install libraries, plugins etc for use in their website.
In order to save face, I thought I had better start pulling my Tweets into this site. So I went to download the Python APIs that other developers have written, but they required me to install the packages before I could use them. This is when I t...read more