User Tim Saunders - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:23:35Zhttp://stackoverflow.com/feeds/user/1970http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1765198/open-node-in-umbraco-programmatically/1782329#17823291Answer by Tim Saunders for Open node in Umbraco programmaticallyTim Saunders2009-11-23T10:43:51Z2009-11-23T10:43:51Z<p>I've tested editContent.aspx?id=1234 on my Umbraco installation and it seems to work correctly.</p>
<p>I'm assuming you are replacing {thenodeid} with the actual node id you want?</p>
<p>Umbraco uses iFrames in the backend for the content tree and the content areas etc. This means that you do not always have full access to the Javascript libraries from the frame that you are in.</p>
<p>Therefore you may need to either include the library in the page you are working with or try and reference the method calls by walking up the dom.</p>
<p>I can't find any documentation for this so it may be a case of looking at the HTML source and working out what is going on.</p>
http://stackoverflow.com/questions/1779186/umbraco-server-error-after-install/1782189#17821891Answer by Tim Saunders for Umbraco server error after installTim Saunders2009-11-23T10:05:47Z2009-11-23T10:05:47Z<p>Umbraco must be installed as a root website, It cannot be installed as a sub directory or virtual directory under a website.</p>
<p>There are plans to support this in future although I'm not sure if a date has been given.</p>
<p>For more info see <a href="http://our.umbraco.org/forum/getting-started/installing-umbraco/3121-Installing-Umbraco-4-on-a-virtual-directory" rel="nofollow">this post</a> on <a href="http://our.umbraco.org" rel="nofollow">our.umbraco.org</a></p>
http://stackoverflow.com/questions/1683799/how-do-i-access-properties-from-parent-document-to-use-in-children/1686857#16868571Answer by Tim Saunders for How do I access properties from parent document to use in childrenTim Saunders2009-11-06T10:56:32Z2009-11-06T10:56:32Z<p>Hi,</p>
<p>In Umbraco you can have what are called recursive values. This are basically page values which look up the node hierachy until it filnds a value.</p>
<p>These can be passed to macros as well.</p>
<p>So in your case assuming your macro is called "charityTotaliser" you could use the following macro call:</p>
<pre><code><umbraco:macro alias="charityTotaliser" ammount="[$FundraisingCurrentAmount]" goal="[$FundraisingGoal]"runat="server"/>
</code></pre>
<p>The $ indicates that the value is recursive.</p>
<p>The XSLT would look something like this (not tested just an example):</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:Stylesheet [ <!ENTITY nbsp "&#x00A0;"> ]>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxml="urn:schemas-microsoft-com:xslt"
xmlns:umbraco.library="urn:umbraco.library"
xmlns:Exslt.ExsltMath="urn:Exslt.ExsltMath"
exclude-result-prefixes="msxml umbraco.library Exslt.ExsltMath">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:param name="currentPage"/>
<!-- Macro parameters -->
<xsl:variable name="FundraisingCurrentAmount" select="/macro/FundraisingCurrentAmount"/>
<xsl:variable name="FundraisingGoal" select="/macro/FundraisingGoal"/>
<xsl:template match="/">
<xsl:value-of select="$FundraisingCurrentAmount div $FundraisingGoal * 100"/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>If requied you can also specify fallback values to be passed (in case the recursive value cannot be found):</p>
<pre><code><umbraco:macro alias="charityTotaliser" ammount="[$FundraisingCurrentAmount], [#FallBackAmmount], 1234" goal="[$FundraisingGoal]"runat="server"/>
</code></pre>
<p>For more information on macro parameters you can read this <a href="http://umbraco.org/documentation/books/macro-parameters-syntax" rel="nofollow">documentation</a></p>
http://stackoverflow.com/questions/1681274/simple-data-access-layer/1681458#16814580Answer by Tim Saunders for Simple Data Access LayerTim Saunders2009-11-05T15:54:07Z2009-11-05T16:00:13Z<p>For very simple requirements (and I mean simple!) I'd create a DAL based on the repository pattern, where the sql querying is done in the repository methods and then simple POCO's (<a href="http://stackoverflow.com/questions/725348/poco-vs-dto">Plain old CLR objects</a>) are created and returned.</p>
<p>You can call sprocs or parametized SQL if required. Then map the data to your poco (for this just use a standard SQLDataReader)</p>
<p>But to be honest the moment the queries get big or complex or there are lots of fields in your objects you're better off letting a proper DAL/ORM take the strain and concentrate on your application.</p>
http://stackoverflow.com/questions/1679695/how-do-you-cope-with-pressure-when-you-program/1679732#167973210Answer by Tim Saunders for How do you cope with pressure? When you program??Tim Saunders2009-11-05T10:46:43Z2009-11-05T13:42:03Z<p>Break it down into smaller chunks of thought.</p>
<p>When under pressure it's easy to only see the big scary monster in front of you. However if you take a closer look and see where you can break the hard problem down into smaller achievable problems, often a lot of the pressure will dissipate.</p>
<p>Commonly, most of the pressure I feel is pressure I put on myself as I over complicate my thought processes. Which then creates a negative feedback loop, increasing the pressure.</p>
<p>Break the loop, take a break etc. Come back and ask yourself does it really have to be this complex?</p>
http://stackoverflow.com/questions/1485926/umbraco-working-with-version-control-test-production/1486183#14861833Answer by Tim Saunders for Umbraco: working with version control? test/production?Tim Saunders2009-09-28T09:35:52Z2009-10-27T10:27:14Z<p>This is a common hurdle when starting to work with Umbraco and the answer is to use what works for you.</p>
<p>However there have been many discussions on Umbraco forums about this very thing, take a look here:</p>
<p><a href="http://our.umbraco.org/forum/core/general/3619-Source-control-and-multiple-developers" rel="nofollow">http://our.umbraco.org/forum/core/general/3619-Source-control-and-multiple-developers</a>
<a href="http://our.umbraco.org/forum/getting-started/installing-umbraco/2918-Update-an-Umbraco-website?p=0#comment11311" rel="nofollow">http://our.umbraco.org/forum/getting-started/installing-umbraco/2918-Update-an-Umbraco-website?p=0#comment11311</a></p>
<p>The key thing to consider is the delineation of content and code. Most code in umbraco is stored externally to the DB and as such can be stored in subversion or any other source control platform. For example, templates, XSLT, CSS, XSLT extensions etc are all stored on the file system.</p>
<p>Page content and site structure are stored in the DB.</p>
<p>There are some grey areas, most notably the dictionary which can contain all sorts of things as well as content.</p>
<p>The way we work with Umbraco is as follows:</p>
<p>We have a separate <a href="http://thecogworks.co.uk/our-services/umbraco/umbraco-goodies" rel="nofollow">Visual Studio Web Project</a> which contains folders for templates, XSLT, CSS, event handlers, user controls etc. This is stored in SVN. Then on build of this project the files are copied over or compiled and copied over to our test/dev server instance of the umbraco site.</p>
<p>Once the changes are approved we just copy the files up.</p>
<p>If you need to sync the content between Umbraco instances you can either use Umbraco Pro (which includes a component called Courier, which is precisely for this purpose) or back up your live DB and restore into your dev environment when needed (or even use replication).</p>
<p>We mostly try and avoid editing content in the test/dev environment as this is where merging the content back up to the live site can get tricky. However sometimes this is unavoidable. We also try and avoid editing templates etc through the Umbraco interface.</p>
<p>The answer to your final question, "should I store my business data in another DB", is rather tricky as it depends very much on what you are going to do with the data. If it is content that would be best stored in the CMS store it in the CMS, however if it's heavily relational data that doesn't really fit in a CMS then store it separately.</p>
<p>We are undertaking a project currently where data is stored in an external DB and we have integrated an application directly into the Umbraco backend. This was a non-trivial task (although just grabbing some data via user controls is easy) and you should consider carefully the level of effort required to store your data externally vs the inbuilt functionality of the CMS and the budget/time you have to play with.</p>
<p>If you want to use the visual studio template we do then you can download it from <a href="http://thecogworks.co.uk/our-services/umbraco/umbraco-goodies" rel="nofollow">our website</a>.</p>
http://stackoverflow.com/questions/1487618/accessing-value-of-dynamically-created-controls-c-asp-net/1487830#14878301Answer by Tim Saunders for Accessing value of dynamically created controls c# asp.netTim Saunders2009-09-28T15:53:58Z2009-09-28T16:36:24Z<p>Hi it sounds to me like you are bit confused over what the various properties of the radio button control do and how to generate the radio button correctly.</p>
<p>The ID property is key here.</p>
<p>You should set the ID property to a unique string that you then use to access the control on postback.</p>
<p>The GroupName is just an alias for the standard name property of a radio button and is used so when a user clicks on a radio button in a group only one radio button can be selected.</p>
<p>For example:</p>
<pre><code>//add list to radio button list
RadioButton radioButton = new RadioButton();
radioButton.GroupName = "radioGroup";
radioButton.Text = singleType.appTypeID.ToString();
radioButton.ID = singleType.appTypeName;
radioArea.Controls.Add(radioButton);
Label label = new Label();
label.Text = "<br />";
radioArea.Controls.Add(label);
</code></pre>
<p>In the above example I've assigned singleType.appTypeName as the ID, assuming that this is unique.</p>
<p>Then to retrive the value on postback do this, assumnig that singleType.appTypeName = "mySuperApp":</p>
<pre><code>RadioButton radioButton = (RadioButton) radioArea.FindControl("mySuperApp");
</code></pre>
<p>Now you can access the radioButton variable to check which GroupName it has, get it's value and check that it is checked.</p>
<p>You will need to loop over the radio buttons to find out which one is checked. An easy way of doing this is looping over the child controls of the radioArea and checking eack control to see if it is a radio button and if it is checked. Another options is to give each ID a prefix i.e. ID="RAD_"+singleType.appTypeName and loop over the Request object and match each one with the correct suffix.</p>
http://stackoverflow.com/questions/1398807/looking-for-an-customer-email-support-system/1398825#13988250Answer by Tim Saunders for Looking for an customer email support systemTim Saunders2009-09-09T10:29:17Z2009-09-09T10:37:15Z<p>We use <a href="http://www.fogcreek.com/FogBUGZ/" rel="nofollow">FogBugz</a> for this kind of thing, I suspect Joel will be on in a moment to big up his product too!</p>
<p>They have a hosted solution which is very low friction or you can host it yourself. Pricing wise it's a shade more than Mailtank, which I know you say is too expensive.</p>
<p>However feature wise it's excellent value for money.</p>
<p>We've found it to be very effective.</p>
<p><strong>There is also this <a href="http://stackoverflow.com/questions/255162/customer-support-system-with-easy-integration">existing question</a> which may be useful to you.</strong></p>
http://stackoverflow.com/questions/1389127/randomly-choose-a-node-in-xslt/1389824#13898242Answer by Tim Saunders for Randomly choose a node in XSLTTim Saunders2009-09-07T15:13:41Z2009-09-07T18:46:53Z<p>In Umbraco you can do something like this:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:Stylesheet [ <!ENTITY nbsp "&#x00A0;"> ]>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxml="urn:schemas-microsoft-com:xslt"
xmlns:umbraco.library="urn:umbraco.library"
xmlns:Exslt.ExsltMath="urn:Exslt.ExsltMath"
exclude-result-prefixes="msxml umbraco.library Exslt.ExsltMath">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:param name="currentPage"/>
<!-- This should probably be a macro parameter so you can use this elsewhere-->
<xsl:variable name="parentNode" select="1048"/>
<xsl:template match="/">
<xsl:variable name="numberOfNodes" select="count(umbraco.library:GetXmlNodeById($parentNode)/node)"/>
<xsl:variable name="randomPosition" select="floor(Exslt.ExsltMath:random() * $numberOfNodes) + 1"/>
<xsl:variable name="randomNode" select="umbraco.library:GetXmlNodeById($parentNode)/node [position() = $randomPosition]"/>
<!--
You now have the node in the $randomNode variable
If you just want the id then you can do an XPath query on the variable
or you can modify the XPath above to get the property you are after rather than
the whole node
-->
<xsl:value-of select="$randomNode/@nodeName" />
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Hope this helps.</p>
<p>Tim</p>
http://stackoverflow.com/questions/1171106/net-developer-career-suggestion/1171232#11712320Answer by Tim Saunders for .Net developer career suggestionTim Saunders2009-07-23T11:48:01Z2009-07-23T11:48:01Z<p>Hmmm, tricky combinations of requirements.</p>
<p>Interesting work, great career prospects and job security but without moving up the slippery pole.</p>
<p>It sounds to me that doing your own thing is the best option, however this is precluded by your stipulation that job security is a must.</p>
<p>I'm not 100% sure that job security can be found anywhere these days, even the Google cash machine has been laying people off.</p>
<p>I think the best way to look at it is by weighing up which priorities are best for you and your individual circumstances.</p>
<p>I suspect locking yourself mentally into one path and one path only is likely to lead to frustration and boredom.</p>
<p>Do what you think is right for now and review as you move forward, in 5 years time you may feel differently about Oracle, .NET, people management etc.</p>
<p>Allow yourself room to grow as a developer and a person and take new opportunities as they come.</p>
http://stackoverflow.com/questions/1094610/umbraco-list-child-nodes-in-user-control/1096752#10967523Answer by Tim Saunders for Umbraco: List Child Nodes in User ControlTim Saunders2009-07-08T08:11:12Z2009-07-16T09:23:29Z<p>Getting child nodes is pretty straightforward.</p>
<p>Not sure how far you are with your code so here's a complete example with the various options:</p>
<pre><code>using umbraco.presentation.nodeFactory;
namespace cogworks.usercontrols
{
public partial class ExampleUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
//If you just want the children of the current node use the following method
var currentNode = Node.GetCurrent();
//If you need a specific node based on ID use this method (where 123 = the desired node id)
var specificNode = new Node(123);
//To get the children as a Nodes collection use this method
var childNodes = specificNode.Children;
//Iterating over nodes collection example
foreach(var node in childNodes)
{
Response.Write(string.Format("{0}<br />", node.Name));
}
//To get the nodes as a datatable so you can use it for DataBinding use this method
var childNodesAsDataTable = node.ChildrenAsTable();
//Databind example
GridViewOnPage.DataSource = childNodesAsDataTable;
GridViewOnPage.DataBind();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1074195/strange-behavior-for-macro-parts-on-umbraco-site/1136377#11363771Answer by Tim Saunders for Strange behavior for macro parts on umbraco site Tim Saunders2009-07-16T09:17:59Z2009-07-16T09:17:59Z<p>Hi Marcus,</p>
<p>I can't replicate your issue - so I suggest you ask this question at <a href="http://our.umbraco.org" rel="nofollow">our.umbraco.org</a></p>
<p>There is will get a bit more visibility by the Umbraco core team who may be aware of the issue.</p>
<p>If you have proper steps to reproduce the bug then submit it to the <a href="http://www.codeplex.com/umbraco" rel="nofollow">umbraco codeplex site</a> so that it can get fixed.</p>
<p>T</p>
http://stackoverflow.com/questions/362445/relative-path-to-a-stylesheet-in-visual-studio-not-working-in-preview4Relative path to a stylesheet in Visual studio not working in previewTim Saunders2008-12-12T10:43:48Z2009-07-08T09:09:06Z
<p>Hi,</p>
<p>I'm assuming this is an easy question, but I'll be darned if I can find the answer.</p>
<p>I have a website in Visual Studio 2008. The paths to the stylesheets (and images) are in the following format /css/stylesheetname.css</p>
<p>At the root of the web project in Visual studio the folder exists as does the stylesheet. These paths work fine when running it in IIS.</p>
<p>If I use the inbuilt webserver in Visual Studio the paths fail because it puts the projectname in the path i.e. <a href="http://localhost:2020/projectname/default.aspx" rel="nofollow">http://localhost:2020/projectname/default.aspx</a></p>
<p>In this case the / takes the path right back to <a href="http://localhost:2020" rel="nofollow">http://localhost:2020</a></p>
<p>This is further compounded by the fact that if you click "design" the styles that import background images all fail although the stylesheet is imported correctly (becuase all other aspects of the stylesheet work i.e. <code>.class{font-family:arial;}</code> works but <code>.class{background: url(/images/image.jpg)}</code> does not).</p>
<p>I guess it's all to do with how Visual studio calculates its root path for the website, however I can't find a setting to change this.</p>
<p>Any ideas??
<strong>Update:</strong> as per Egil Hansen's answer I converted the paths in the CSS file to relative paths. However the background images still do not display in Design mode. I'll take a look at using Themes to get round this in due course.</p>
http://stackoverflow.com/questions/1035513/umbraco-backend-user-control/1037681#10376811Answer by Tim Saunders for Umbraco: Backend User ControlTim Saunders2009-06-24T11:00:40Z2009-06-25T09:12:56Z<p><strong>Postback Option</strong></p>
<p>Instead of trying to link between pages, why not just do all the work in the existing user control by using postbacks?</p>
<p>i.e. a method like this in your user control</p>
<pre><code>public void Handle_Click(object sender, System.Event args)
{
//Do Something
}
</code></pre>
<p>This will work correctly as umbraco will not try and interpret the URL as it's staying on the same page.</p>
http://stackoverflow.com/questions/1041113/are-web-safe-colors-still-relevant/1041150#10411503Answer by Tim Saunders for Are Web Safe Colors still relevant?Tim Saunders2009-06-24T21:39:55Z2009-06-24T21:39:55Z<p>It depends what you mean by web safe colours. </p>
<p>In terms of 16bit colour it's probably not worth worrying about. However Colours do not appear the same across devices. This can lead to all sorts of problems particularly if a designers gamma settings are different to your particular monitor set up.</p>
<p>So you still need to test your design across multiple set ups. </p>
http://stackoverflow.com/questions/1035513/umbraco-backend-user-control/1037699#10376991Answer by Tim Saunders for Umbraco: Backend User ControlTim Saunders2009-06-24T11:08:06Z2009-06-24T16:47:24Z<p><strong>iFrame option</strong></p>
<p>Because of the limitations as described in the Link to page option you may wish to load your admin pages into an iFrame which you put on the .ascx control.</p>
<p>In this way you can go from .aspx to .aspx and still retain the dashboard tabs and surrounding design.</p>
<p>You will still need to add the folder that contains you .aspx pages to the umbracoReservedPaths entry in the web.config</p>
<pre><code><add key="umbracoReservedPaths" value="/umbraco,/install,/YOUR/PATH/HERE" />
</code></pre>
http://stackoverflow.com/questions/1035513/umbraco-backend-user-control/1037690#10376901Answer by Tim Saunders for Umbraco: Backend User ControlTim Saunders2009-06-24T11:05:15Z2009-06-24T11:05:15Z<p><strong>Link to page option</strong></p>
<p>To enable linking to another page you will need to add an entry in the web.config file telling umbraco to ignore the path (so it doesn't try and interpret the URL).</p>
<p>Just add your path to the following appSetting:</p>
<pre><code><add key="umbracoReservedPaths" value="/umbraco,/install,/YOUR/PATH/HERE" />
</code></pre>
<p>The link will then work in the dashboard control, however it will link to a page that doesn't have all the dashboard design applied (so the tabs will disappear etc). You can apply the design to your .aspx page, however it is quite a bit of work.</p>
http://stackoverflow.com/questions/1004243/datediff-for-months-in-umbraco/1005449#10054492Answer by Tim Saunders for DateDiff for Months in UmbracoTim Saunders2009-06-17T06:49:36Z2009-06-17T08:23:24Z<p>The DateDiff method does not support months. </p>
<p>It only supports years, minutes or seconds. </p>
<p>To calculate the difference in months you'll need to do some maths juggling or use an inline c# method or write your own XSLT extension method. </p>
<p><a href="http://umbraco.org/4634?altTemplate=print" rel="nofollow">More info on inline c#</a></p>
<p>There are many tutorials for creating XSLT extension methods, including several video tutorials on he main umbraco site.</p>
<p><a href="http://en.wikibooks.org/wiki/Umbraco/Create%5Fxslt%5Fexstension%5Flike%5Fumbraco.Library%5Fin%5FC" rel="nofollow">More info on XSLT exensions</a></p>
<p><a href="http://umbraco.org/documentation/videos/for-developers/xslt-extensions" rel="nofollow">Umbraco videos on XSLT extensions</a></p>
http://stackoverflow.com/questions/988911/selecting-set-of-nodes-by-id-in-umbraco/989198#9891980Answer by Tim Saunders for Selecting set of nodes by id in umbracoTim Saunders2009-06-12T21:41:59Z2009-06-12T21:41:59Z<p>You could use the @path attribute which contains a csv list of the nodes ancestor ids. Then just grab the first one or whichever one is of interest. </p>
<p>Another technique could be to use @level to select a node in the ancestors at a particular depth in the tree. </p>
<p>Not in front of my computer at the moment will update with more detail when I am. </p>
http://stackoverflow.com/questions/967464/extending-the-umbraco-dashboard/968841#9688415Answer by Tim Saunders for Extending the umbraco dashboardTim Saunders2009-06-09T08:25:51Z2009-06-11T08:00:49Z<p>Yes this is possible. </p>
<p>The backend can be extended both in terms of the dashoard, sections and content trees. </p>
<p>There is a config file you can use to define new dashboard sections. </p>
<p>The config file can be found in the following folder: "/config/dashboard.config"</p>
<p>Normally the dashboard.config file has some example XML of how it needs to be structured which looks something like this (I've extended it a bit to show more of the features).</p>
<pre><code><dashBoard>
<section>
<areas>
<area>default</area>
<area>content</area>
<area>member</area>
</areas>
<tab caption="Last Edits">
<control>/usercontrols/dashboard/latestEdits.ascx</control>
</tab>
<tab caption="Latest Items">
<control>/usercontrols/dashboard/newestItems.ascx</control>
</tab>
<tab caption="Create blog post">
<control>/usercontrols/umbracoBlog/dashboardBlogPostCreate.ascx</control>
</tab>
</section>
<section>
<areas>
<area>media</area>
</areas>
<tab caption="Last Edits">
<control>/usercontrols/dashboard/latestEdits.ascx</control>
</tab>
</section>
</dashBoard>
</code></pre>
<p>The section node allows you to set up different tab groups for different admin sections. In the example above the tabs Latest Edits, Latest Items and Create blog post will be applied to the default, member and content sections. Defaut is the first thing the user sees when logging into the back end before selecting a section.</p>
<p>To control what is seen in the different sections, you set up a new section node and define which area it applies to and the tab to show. In the example above the second section applies only to the media section.</p>
<p>What is displayed in the tab is a normal .NET user control. This can be totally separate from Umbraco or can contain umbraco specific code, depending on wether you are integrating a legacy application or simply extending umbraco.</p>
<p>If you wish to create a new section (one of the icons that appears in the bottom left corner of the umbraco backend) then you will need to get your hands a little dirtier.</p>
<p>To add a section you need to add a couple of database entries. First you need to define the app in the umbracoApp table.</p>
<p>Then add an entry to umbracoUsers2App for the admin user (0).</p>
<p>You'll then need to define a new content tree and create the supporting user controls.</p>
<p>There is more information about setting this up here: <a href="http://simm.dk/umbraco-corner/articles/making-custom-sections-and-trees-inside-umbraco---part-i.aspx" rel="nofollow">http://simm.dk/umbraco-corner/articles/making-custom-sections-and-trees-inside-umbraco---part-i.aspx</a></p>
<p>The first approach (just defining some new tabs) is considerably easier than adding a new section, so I'd recommend you start with that. Then when you are more comfortable you can dive right in and create whole new sections and content trees!</p>
http://stackoverflow.com/questions/917823/are-there-any-good-e-commerce-extensions-plugins-for-umbraco/919682#9196823Answer by Tim Saunders for Are there any good e-commerce extensions/plugins for Umbraco?Tim Saunders2009-05-28T07:51:05Z2009-06-09T15:57:22Z<p>Hi,</p>
<p>The only other package I'm aware of is <a href="http://umbracoecommerce.codeplex.com" rel="nofollow">umbraco commerce</a></p>
<p>It doesnt look like it's been updated in a while and Commerce4Umbraco is nearing first release so is probaby a better bet.</p>
<p>I know that it will be featured at the <a href="http://codegarden09.com/" rel="nofollow">Codegarden09 umbraco conference</a>.</p>
<p>As Umbraco is .NET based you could also use an off the shelf shopping cart, such as <a href="http://www.dotnetcart.com/" rel="nofollow">dotNetCart</a> or develop sometihing bespoke. Of course this would mean separate backends, but again you could easily fudge it into the backend end if required.</p>
http://stackoverflow.com/questions/721446/how-to-tell-ie-a-html-file-on-my-disk-is-not-a-security-risk/721590#7215900Answer by Tim Saunders for How to tell IE a HTML file on my disk is not a security risk?Tim Saunders2009-04-06T14:04:01Z2009-04-06T14:04:01Z<p>Another option, if it's only IE you need to view it in is to save it as a .hta file.</p>
<p>This makes it a HTML application.</p>
<p>It's as simple as changing the suffix to .hta. Although there are other options you can specify.</p>
<p>For more info:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms536496%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms536496(VS.85).aspx</a></p>
http://stackoverflow.com/questions/708407/folders-in-umbraco-4/708526#7085265Answer by Tim Saunders for Folders in umbraco 4Tim Saunders2009-04-02T06:33:42Z2009-04-02T08:13:16Z<p>This is an area where the documentation is somewhat lacking, however it is perfectly doable:</p>
<p>Create a document type called something like "Content Folder". (You can't use Folder as it's already in use in the system).</p>
<p>Give the new doc type the following property:</p>
<p>Name: Redirect to</p>
<p>Alias: umbracoRedirect</p>
<p>Type: ContentPicker</p>
<p>The important bit there is the Alias: umbracoRedirect. This is one of the undocumented built in umbraco features. It basically redirects one node to another (making it act like a folder).</p>
<p>If you want to hide the folder from the menu then you'll need to add another one of those undocumented properties: umbracoNaviHide, which is used in the default XSLT navigaiton examples.</p>
<p>More info: <a href="http://www.umbraco.org/documentation/books/converting-existing-site-to-umbraco/creating-folders" rel="nofollow">http://www.umbraco.org/documentation/books/converting-existing-site-to-umbraco/creating-folders</a></p>
http://stackoverflow.com/questions/699847/umbraco-yay-or-nay/701457#7014575Answer by Tim Saunders for Umbraco Yay or Nay?Tim Saunders2009-03-31T15:06:38Z2009-03-31T15:06:38Z<p>I and my company have just spent the last month or so evaluating Umbraco to see wehther it would fit our needs.</p>
<p>We were looking for an open source replacement to a basic in house CMS we had developed.</p>
<p>It was important that the CMS was in .NET and was easy for end users and developers to use.
It also needed to be customisable and extendable.</p>
<p>Umbraco ticked all these boxes and has an active and helpful community surrounding it.</p>
<p>However the documentation is not terribly complete or up to date which can make getting started rather difficult. particularly for more complex implementations.</p>
<p>Another weak area, is workflow and page locking, but this is being worked on in the commercial version and is really only a concern for larger scale implementations.</p>
<p>For getting to grips with simple sites <a href="http://www.creativewebspecialist.co.uk/2009/03/06/creative-website-starter-%28cws2%29-for-umbraco-is-released.aspx" rel="nofollow">The Creative Website Starter ki</a>t is excellent and gives you a good grounding in how Umbraco works and how to implement a simple CMS based website.</p>
<p>The most important thing to do before starting an Umbraco implementation is to plan your document types and content types. This is because once implemented it can be hard to change document types on pages you have already created and populated. CMS projects invariably live and die in the planning phase anyway so this is no different to any other CMS.</p>
<p>I've used many many different CMS platforms over the years: Immediacy, MCMS, Sitecore, Obtree, Reef, Reddot etc etc and I've found Umbraco to be stable, fast and extensible.</p>
<p>It has it's quirks and in some places lacks polish but overall it is an excellent CMS for small to medium sites and, with a bit of tweaking, for large site's as well.</p>
<p>We <a href="http://www.thecogworks.co.uk" rel="nofollow">The Cogworks</a> have settled on Umbraco and are now in the process of migrating our clients, on our legacy platform, to Umbraco as well as a brand new implementation.</p>
http://stackoverflow.com/questions/638422/classic-asp-to-asp-net-urlencoding-problem/697904#6979041Answer by Tim Saunders for Classic Asp to Asp.Net urlEncoding problemTim Saunders2009-03-30T16:19:30Z2009-03-30T16:19:30Z<p>This recent question that I asked sheds further light on this type of issue with UrlEncoding:</p>
<p>/questions/696659/why-is-this-appearing-in-my-c-strings-194163</p>
<p>It may prove useful to yourself or others hitting this problem.</p>
http://stackoverflow.com/questions/697682/ie6-png-transparency/697688#6976884Answer by Tim Saunders for IE6 PNG transparencyTim Saunders2009-03-30T15:25:56Z2009-03-30T15:33:09Z<p>Use this:
<a href="http://www.twinhelix.com/css/iepngfix/" rel="nofollow">http://www.twinhelix.com/css/iepngfix/</a></p>
<p>This is also good for IE 5.5, but not for mac versions of IE or earlier version of IE.</p>
<p>I've used it on quite few sites and have had no problems with it.</p>
<p>There can sometimes be an ugly grey box around the PNG however until the script kicks in.</p>
http://stackoverflow.com/questions/696659/why-is-this-appearing-in-my-c-strings-a2Why is this appearing in my c# strings: £Tim Saunders2009-03-30T10:07:23Z2009-03-30T12:20:48Z
<p>I have a a string in c# initialised as follows:</p>
<pre><code>string strVal = "£2000";
</code></pre>
<p>However whenever I write this string out the following is written:</p>
<p>£2000</p>
<p>It does not do this with dollars.</p>
<p>An example bit of code I am using to write out the value:</p>
<pre><code>System.IO.File.AppendAllText(HttpContext.Current.Server.MapPath("/logging.txt"), strVal);
</code></pre>
<p>I'm guessing it's something to do with localization but if c# strings are just unicode surely this should just work?</p>
<p><strong>CLARIFICATION:</strong> Just a bit more info, Jon Skeet's answer is correct, however I also get the issue when I URLEncode the string. Is there a way of preventing this?</p>
<p>So the URL encoded string looks like this:</p>
<p>"%c2%a32000"</p>
<p>%c2 = Â
%a3 = £</p>
<p>If I encode as ASCII the £ comes out as ?</p>
<p>Any more ideas?</p>
http://stackoverflow.com/questions/695176/is-there-any-cushycms-alternative/695410#6954100Answer by Tim Saunders for Is there any cushycms alternative ?Tim Saunders2009-03-29T21:26:04Z2009-03-29T21:26:04Z<p>There are many questions like this on Stackover flow
for example:
<a href="http://stackoverflow.com/questions/618685/what-is-the-best-free-cms-for-my-needs">link text</a></p>
<p>Just search for CMS</p>
http://stackoverflow.com/questions/690773/encoding-in-sms-message-sent-via-gateway-not-working-correctly0Encoding £ in SMS message sent via Gateway not working correctlyTim Saunders2009-03-27T17:43:11Z2009-03-29T19:27:53Z
<p>Hi,</p>
<p>I'm having trouble with an SMS message I am sending using a provider called Cymba.</p>
<p>Basically I'm posting the message over to them as per their specifications URL encoded.</p>
<p>However when the message is sent to my phone the £ appears with an A in front i.e. £A</p>
<p>Now C# strings are Unicode by default, so I switched to ASCII encoding and the £ comes over as ?.</p>
<p>I've tried converting the message string to hex starting form the Unicode and ASCII versions (as via this gateway you an also submit the message as hex). However the same behaviour occurs.</p>
<p>I suspect it is something to do with the string encoding as SMS supports a 7bit encoding format: GSM 03.38</p>
<p>I suspect also that if I send over Unicode I'll only get a 70 or 140 char message instead of the standard 160.</p>
<p>I'm quite new to SMS sending so any help or advice will be appreciated.</p>
<p>So the question is, how can I get my C# strings into this format?</p>
<p><strong>Update:</strong> Looks like the Gateway is the one with the problem not my code as I tried replacing the offending £ with the 7bit equivalent hex value and this did not work either. See below for my test code which may help others in future:</p>
<pre><code>byte pound = 0xA3;
byte GSMPound = 0x01;
string hexxedMsg = "";
System.Text.UnicodeEncoding encoder = new System.Text.UnicodeEncoding();
byte[] msgBytes = encoder.GetBytes(message);
foreach (byte byt in msgBytes)
{
if(byt == pound)
hexxedMsg += GSMPound.ToString("X");
else
hexxedMsg += byt.ToString("X2"); ;
}
</code></pre>
http://stackoverflow.com/questions/681303/is-there-a-plugin-or-example-of-a-jquery-slider-working-with-non-equably-divisibl1Is there a plugin or example of a jquery slider working with non-equably divisible values?Tim Saunders2009-03-25T12:14:27Z2009-03-26T03:04:04Z
<p>I have found two excellent jquery plugins for generating a slider for a web form, which degrade nicely in browsers that do not support javascript have styles turned off etc.</p>
<p>The first is the Jquery.UI version : <a href="http://ui.jquery.com/demos/slider/#steps" rel="nofollow">http://ui.jquery.com/demos/slider/#steps</a></p>
<p>The second is a select element to slider : <a href="http://www.filamentgroup.com/lab/update%5Fjquery%5Fui%5F16%5Fslider%5Ffrom%5Fa%5Fselect%5Felement/" rel="nofollow">http://www.filamentgroup.com/lab/update_jquery_ui_16_slider_from_a_select_element/</a></p>
<p>However I need to create a slider that doesn't just divide the slider up in equal parts.</p>
<p>For example let's say I have the following range of numbers:</p>
<p>800,1000,1100,1200,1300,1400,1500</p>
<p>I'd like the slider to have a nice big gap between 800 and 1000 then smaller gaps between 1100-1500</p>
<p>So the slider would look a little like this:</p>
<p>800----1000--1100--1200--1300--1400--1500</p>
<p>Preferably I'd like it to degrade to a drop down, so the question is does anyone know of a plugin that supports this or has any recommendations for the best way of achieving this, customise the filamentgroup plugin roll my own etc.</p>
<p><strong>Update:</strong> Been hacking about with filament group's slider and it implements the handles via JQuery UI's slider anyway. So it looks like modding JQuery.UI its self is the only option available. Will dig about in the code to see if I can find the requisite bit that needs changing. If in the meantime anyone has any ideas!!!</p>
http://stackoverflow.com/questions/1765198/open-node-in-umbraco-programmaticallyComment by Tim Saunders on Open node in Umbraco programmaticallyTim Saunders2009-11-19T20:07:21Z2009-11-19T20:07:21ZCould you give a bit more detail on what you are trying to do?
Are you trying to open a node in the content tree on the left or navigating to a node edit form in the right section of the screen?
Also how does it fail and what version of Umbraco are you using. http://stackoverflow.com/questions/1679695/how-do-you-cope-with-pressure-when-you-program/1679846#1679846Comment by Tim Saunders on How do you cope with pressure? When you program??Tim Saunders2009-11-05T11:50:41Z2009-11-05T11:50:41ZFollowed swiftly by burnout and rapidly declining health!http://stackoverflow.com/questions/1487618/accessing-value-of-dynamically-created-controls-c-asp-net/1487830#1487830Comment by Tim Saunders on Accessing value of dynamically created controls c# asp.netTim Saunders2009-09-30T12:50:19Z2009-09-30T12:50:19ZI'm afraid not. The GroupName attribute is just an alias for the normal name attribute on the radiobutton. The only way of doing what you would like is to use the RadioButtonList control. Otherwise it's just a case of looping through the controls to find the checked one.http://stackoverflow.com/questions/1487618/accessing-value-of-dynamically-created-controls-c-asp-net/1487830#1487830Comment by Tim Saunders on Accessing value of dynamically created controls c# asp.netTim Saunders2009-09-28T16:38:30Z2009-09-28T16:38:30ZCorrected my brain and fingers not in sync errorhttp://stackoverflow.com/questions/1487618/accessing-value-of-dynamically-created-controls-c-asp-net/1487830#1487830Comment by Tim Saunders on Accessing value of dynamically created controls c# asp.netTim Saunders2009-09-28T16:34:50Z2009-09-28T16:34:50ZWhooops! Oh the shame!http://stackoverflow.com/questions/1485926/umbraco-working-with-version-control-test-production/1486183#1486183Comment by Tim Saunders on Umbraco: working with version control? test/production?Tim Saunders2009-09-28T15:26:59Z2009-09-28T15:26:59ZHi Niels, I've added a link to the visual studio template that we use. This contains an exanple folder structure and example post build events (which you will need to edit). Just store that in SVN and avoid editing code through the umbraco interface!http://stackoverflow.com/questions/1398807/looking-for-an-customer-email-support-system/1398823#1398823Comment by Tim Saunders on Looking for an customer email support systemTim Saunders2009-09-09T10:29:56Z2009-09-09T10:29:56ZDarn it I must type faster!http://stackoverflow.com/questions/1389127/randomly-choose-a-node-in-xslt/1389824#1389824Comment by Tim Saunders on Randomly choose a node in XSLTTim Saunders2009-09-07T15:46:46Z2009-09-07T15:46:46ZOOOPS - a few little typos in there. I've tidied it up and checked that it works in one of my Umbraco installations. I've also added a line showing how to grab a value.http://stackoverflow.com/questions/1389127/randomly-choose-a-node-in-xslt/1389824#1389824Comment by Tim Saunders on Randomly choose a node in XSLTTim Saunders2009-09-07T15:27:51Z2009-09-07T15:27:51ZOK - I've not actually checked the code - just typed it pretty much off the top of my head, so beware bugs!http://stackoverflow.com/questions/1311283/umbraco-cms-stripping-alt-tags-from-images-when-content-savedComment by Tim Saunders on Umbraco CMS stripping ALT tags from images when content savedTim Saunders2009-08-21T11:51:38Z2009-08-21T11:51:38ZWhch version of Umbraco are you using, and what are you using to enter your content (I'm assuming the WYSIWYG rich text editor).http://stackoverflow.com/questions/1070137/umbraco-querystring-parameters-losing-casingComment by Tim Saunders on umbraco: QueryString parameters losing casingTim Saunders2009-07-02T08:59:13Z2009-07-02T08:59:13ZHi Could you give a bit more detail and possibly an example on how you are generating the URLs which are loosing the casing as I'm not 100% clear on what you mean. Thanks.http://stackoverflow.com/questions/1035513/umbraco-backend-user-control/1037681#1037681Comment by Tim Saunders on Umbraco: Backend User ControlTim Saunders2009-06-24T16:44:12Z2009-06-24T16:44:12ZJust a side note, but you cannot link between controls as they are not pages in their own right i.e. you can't link to myControl.ascx you have to link to page containing the control i.e MyPageContainingMyControl.aspx. This means the Link to page or iFrame options are the way forward.http://stackoverflow.com/questions/967464/extending-the-umbraco-dashboard/968841#968841Comment by Tim Saunders on Extending the umbraco dashboardTim Saunders2009-06-09T15:48:57Z2009-06-09T15:48:57ZOK, I've added member to the example XML so people stumbling across this will hopefully avoid the pitfall!http://stackoverflow.com/questions/752366/how-to-install-extended-latin-a-and-b-on-umbracoComment by Tim Saunders on How to install extended latin A and B on umbracoTim Saunders2009-04-17T10:43:29Z2009-04-17T10:43:29ZCan you give more details on your issue, as I'm not clear what you mean or what you are trying to achieve?http://stackoverflow.com/questions/696659/why-is-this-appearing-in-my-c-strings-a/696718#696718Comment by Tim Saunders on Why is this appearing in my c# strings: £Tim Saunders2009-03-30T16:11:15Z2009-03-30T16:11:15ZIrrespective of whether C# strings are UTF-8 or UTF-16 it is still not clear to me why URLEncode would be implemented in such a way that it doesn't work in its default state with strings defined in C#. Surely it would be more intuitive for it to encode correctly?