<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>ShadoCMS and ZoomFlex Blog</title>
<link>http://help.strakersoftware.com/blog/</link>
<description>Straker Software Blog for ShadoCMS and ZoomFlex</description>
<language>en</language>
<pubDate>Mon, 03 May 2010 19:03:20 -0400</pubDate>
<lastBuildDate>Tue, 09 Dec 2008 11:35:31 -0400</lastBuildDate>
<generator>ShadoCMS RSS Generator</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<managingEditor>indy@strakersoftware.com</managingEditor>
<webMaster>indy@strakersoftware.com</webMaster>
<item>
<title>Important ShadoCMS Variables</title>
<link>http://help.strakersoftware.com/blog/2008/variables.cfm</link>
<description>
&lt;p&gt;When working with templates, ShadoCMS makes available a whole bunch of variables. These variables can be used in templates for accomplishing tasks like conditional processing.&lt;/p&gt;
&lt;p&gt;Here is a list of some important variables.&lt;/p&gt;
</description>
<pubDate>{ts '2008-12-09 11:35:31'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/variables.cfm</guid>
</item>
<item>
<title>Overview</title>
<link>http://help.strakersoftware.com/blog/2008/no-sitename/overview.cfm</link>
<description>
By default, ShadoCMS sites are set up and coded to use the name of the site in all URLs. This works very well as a default option as it requires almost no webserver and code changes.
But there are times when you want to make the URLs in your site mor...
</description>
<pubDate>{ts '2008-11-20 06:19:15'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/no-sitename/overview.cfm</guid>
</item>
<item>
<title>Regular Expression for Finding Unqualified Component Names</title>
<link>http://help.strakersoftware.com/blog/2008/comp-regex.cfm</link>
<description>
Using fully-qualified component names is always a good idea. It reduces the risk of incorrectly using a wrong component in case there are multiple components with the same name on a ColdFusion server. Also, when using ShadoCMS, it makes the code more...
</description>
<pubDate>{ts '2008-11-18 07:07:56'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/comp-regex.cfm</guid>
</item>
<item>
<title>Working with Page Variables/Properties</title>
<link>http://help.strakersoftware.com/blog/2008/pagevariables.cfm</link>
<description>
Page variables (known as page properties in an earlier life) are very useful in setting up variables that can be inspected by templates at runtime. The inspected values can be then used to change the logic on a template. This allows developers to res...
</description>
<pubDate>{ts '2008-11-12 16:07:23'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/pagevariables.cfm</guid>
</item>
<item>
<title>Email Users When They are Added to a Site</title>
<link>http://help.strakersoftware.com/blog/2008/email-users-on-add.cfm</link>
<description>
When users are added to a ShadoCMS site, by default they are not notified that they have been added. However, if you need to notify users by email that they have been added to a ShadoCMS site, you can easily create an event handler that does this. He...
</description>
<pubDate>{ts '2008-11-11 20:52:27'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/email-users-on-add.cfm</guid>
</item>
<item>
<title>Adding Print and PDF functionality</title>
<link>http://help.strakersoftware.com/blog/2008/print-pdf.cfm</link>
<description>
&lt;p&gt;Often it is very useful to add functionality to a site that allows a user to print a whole section to screen (which can then be printed to a printer) or to a PDF.&lt;/p&gt;
&lt;p&gt;It is fairly straight-forward to create this in ShadoCMS. Here is how.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
<pubDate>{ts '2008-11-10 05:10:43'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/print-pdf.cfm</guid>
</item>
<item>
<title>Automate Lucene Search Store Indexing</title>
<link>http://help.strakersoftware.com/blog/2008/automate-indexing.cfm</link>
<description>
&lt;p&gt;Here is a script that can be added to ColdFusion scheduled tasks to automate indexing of a few or all Lucene search stores.&lt;/p&gt;
</description>
<pubDate>{ts '2008-11-07 12:36:17'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/automate-indexing.cfm</guid>
</item>
<item>
<title>ShadoCMS Search and Java Version</title>
<link>http://help.strakersoftware.com/blog/2008/shadocms-search-and-java-version.cfm</link>
<description>
The ShadoCMS search uses a few Java libraries to index and retrieve content -- in site tree, digital assets and SOF objects.
These Java libraries are dependent on the version of Java that is being used on the ColdFusion server.
You need to have Java ...
</description>
<pubDate>{ts '2008-09-23 23:03:26'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/shadocms-search-and-java-version.cfm</guid>
</item>
<item>
<title>Hungarian Notation for ShadoCMS Sites</title>
<link>http://help.strakersoftware.com/blog/2008/hungarian-notation-for-shadocms-sites.cfm</link>
<description>
&lt;p&gt;&lt;b&gt;Hungarian notation&lt;/b&gt; is a &lt;span class=&quot;mw-redirect&quot;&gt;naming convention&lt;/span&gt; in computer programming, in which the name of a &lt;span class=&quot;mw-redirect&quot;&gt;variable&lt;/span&gt; indicates its type or intended use.&lt;/p&gt;
</description>
<pubDate>{ts '2008-09-22 20:37:51'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/hungarian-notation-for-shadocms-sites.cfm</guid>
</item>
<item>
<title>Test-driven Development with ShadoCMS</title>
<link>http://help.strakersoftware.com/blog/2008/test-driven-development-with-shadocms.cfm</link>
<description>
Writing tests as you develop code for a ShadoCMS site is the best way to ensure that the code you write works as expected.
We recently added information in the documentation section that shows how to setup a test-driven development system using the M...
</description>
<pubDate>{ts '2008-09-18 00:41:06'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/test-driven-development-with-shadocms.cfm</guid>
</item>
<item>
<title>Shado 8.5 New Release - Member Manager</title>
<link>http://help.strakersoftware.com/blog/2008/shado-8-5-new-release---member-manager.cfm</link>
<description>
&lt;p&gt;Straker releases the new member manager module as the first in a series of module enhancements and new functionality additions over the coming months.&lt;/p&gt;
</description>
<pubDate>{ts '2008-09-16 15:17:20'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/shado-8-5-new-release---member-manager.cfm</guid>
</item>
<item>
<title>ShadoCMS 8.5 Released</title>
<link>http://help.strakersoftware.com/blog/2008/shadocms-8-5-released.cfm</link>
<description>
&lt;p&gt;ShadoCMS v8.5 has been released further solidifying Shado as a leader in the Multilanguage and Rich Internet Application market.&lt;/p&gt;
</description>
<pubDate>{ts '2008-08-18 08:53:52'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/shadocms-8-5-released.cfm</guid>
</item>
<item>
<title>System Requirements for Installing ShadoCMS 8</title>
<link>http://help.strakersoftware.com/blog/2008/system-requirements-for-installing-shadocms-8.cfm</link>
<description>
</description>
<pubDate>{ts '2008-06-13 02:24:59'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/system-requirements-for-installing-shadocms-8.cfm</guid>
</item>
<item>
<title>Using Decimals in ZoomFlex Properties</title>
<link>http://help.strakersoftware.com/blog/2008/using-decimals-in-zoomflex-properties.cfm</link>
<description>
</description>
<pubDate>{ts '2008-06-04 21:28:48'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/using-decimals-in-zoomflex-properties.cfm</guid>
</item>
<item>
<title>Custom object queries in ZoomFlex</title>
<link>http://help.strakersoftware.com/blog/2008/custom-object-queries-in-zoomflex.cfm</link>
<description>
</description>
<pubDate>{ts '2008-05-14 10:21:23'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/custom-object-queries-in-zoomflex.cfm</guid>
</item>
<item>
<title>Question: What is the best way to retrieve objects based on obj_uuid</title>
<link>http://help.strakersoftware.com/blog/2008/question-what-is-the-best-way-to-retrieve-objects-based-on-obj_uuid.cfm</link>
<description>
</description>
<pubDate>{ts '2008-05-13 04:57:38'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/question-what-is-the-best-way-to-retrieve-objects-based-on-obj_uuid.cfm</guid>
</item>
<item>
<title>Lowercase Returned Results in a Delegate</title>
<link>http://help.strakersoftware.com/blog/2008/lowercase-returned-results-in-a-delegate.cfm</link>
<description>
</description>
<pubDate>{ts '2008-05-13 02:17:30'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/lowercase-returned-results-in-a-delegate.cfm</guid>
</item>
<item>
<title>Debugging ZoomFlex Applications</title>
<link>http://help.strakersoftware.com/blog/2008/zoomflexdebugging/zoomflexdebugging_home.cfm</link>
<description>
When you are developing and extending applications with ZoomFlex, you would need to use debugging to see the results of your changes to the code. As ZoomFlex applications have two components to it -- client-side Flex application, and server-side Cold...
</description>
<pubDate>{ts '2008-05-08 00:20:16'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/zoomflexdebugging/zoomflexdebugging_home.cfm</guid>
</item>
<item>
<title>Automatically creating folders in Digital Assets based on Site Tree</title>
<link>http://help.strakersoftware.com/blog/2008/automatically-creating-folders-in-digital-assets-based-on-site-tree.cfm</link>
<description>
There are times when you want to automatically create a folder in Digital Assets (FMS) manager for each newly added section/page in the site tree. Some implementations of ShadoCMS adopt this as an organizing principle for their digital assets. Implem...
</description>
<pubDate>{ts '2008-03-12 20:11:14'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/automatically-creating-folders-in-digital-assets-based-on-site-tree.cfm</guid>
</item>
<item>
<title>Date Formatting in Flex Datagrid</title>
<link>http://help.strakersoftware.com/blog/2008/date-formatting-in-flex-datagrid.cfm</link>
<description>
</description>
<pubDate>{ts '2008-01-14 19:35:44'}</pubDate>
<guid>http://help.strakersoftware.com/blog/2008/date-formatting-in-flex-datagrid.cfm</guid>
</item>
</channel></rss>
