<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Comments on The Lazy IA's Guide to Making Sitemaps</title>
    <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps</link>
    <pubDate>Fri, 26 Jan 2007 14:52:30 GMT</pubDate>
    <description>The more automated our lives become, the less time we seem to have. And as an information architect, a lot of time is spent making sitemaps ... by hand. How valuable are sitemaps to a project team and to clients? Would your time be better spent doing other tasks than hand building sitemaps? What if we told you, "now you can." Find out how.</description>
    <item>
      <description>&lt;p&gt;My latest site map has taken the form of a Word table containing custom bulleted lists. Each row is a main folder; columns 2-7 are subfolders. Lists use the folder wingding for the first bullet, page wingding for the second bullet. Or multiple pages wingding for a template. It&amp;#8217;s helped me to visualize things while keeping to a format that everyone can edit.&lt;/p&gt;

	&lt;p&gt;But I&amp;#8217;d love to see a good-looking Excel site map! Could I get it emailed as well? eheinz at liveperson dot com. Thanks.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2533</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2533</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:30 GMT</pubDate>
      <author>Erica Heinz</author>
    </item>
    <item>
      <description>&lt;p&gt;This article is great, well worth downloading the zip file. If you already have an excel site map the whole process takes about 1 minute. Thank you Steven for sharing this with us!&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2531</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2531</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:30 GMT</pubDate>
      <author>Harry Brignull</author>
    </item>
    <item>
      <description>&lt;p&gt;Jon,&lt;/p&gt;

	&lt;p&gt;I&amp;#8217;ve no idea how to post a document to this site, but I&amp;#8217;d love to see an example of your Excel sitemap. We&amp;#8217;ve recently struggled with the Excel-is-practical-but-Visio-looks-nice dilemma, so I&amp;#8217;d like to see how your Excel solution found a happy medium. It does seem that putting the effort in to making an Excel sitemap look decent is a better solution to the problem discussed in this article. If we can avoid Visio altogether, and just update one document, that sounds ideal to me.&lt;/p&gt;

	&lt;p&gt;I&amp;#8217;d be grateful if you could email your sample to bcdonohue at gmail dot com.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2530</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2530</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:30 GMT</pubDate>
      <author>Brian Donohue</author>
    </item>
    <item>
      <description>&lt;p&gt;Graphviz is a good program for displaying simple and very complex site maps. Since the documentation at the site can be overwhelming here is a simple example.&lt;/p&gt;

	&lt;p&gt;Using the &amp;#8220;dot&amp;#8221; program the following input will create a simple three page site map with three transitions from a to b and c and from b to c:&lt;/p&gt;

&lt;pre&gt;&lt;br /&gt;digraph "Site X" {&lt;br /&gt;
    // display the pages as gray rectangles&lt;br /&gt;    node [ shape=box, color=gray, fontname="Helvetica" ]&lt;br /&gt;    // display the transitions as gray, directed arrows&lt;br /&gt;    edge [ color=gray, arrowhead=open ]&lt;br /&gt;
    // define all the pages&lt;br /&gt;    a [ label = "A ..." ]&lt;br /&gt;    b [ label = "B ..." ]&lt;br /&gt;    c [ label = "C ..." ]&lt;br /&gt;
    // define the transitions between pages&lt;br /&gt;    a -&amp;gt; b&lt;br /&gt;    a -&amp;gt; c&lt;br /&gt;    b -&amp;gt; c&lt;br /&gt;
    // done&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;
	&lt;p&gt;I have named the pages a, b, and c but a meaningful names like Home and EmailVerification can also be used.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2523</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2523</guid>
      <pubDate>Fri, 06 Apr 2007 20:51:36 GMT</pubDate>
      <author>Andrew Gilmartin</author>
    </item>
    <item>
      <description>&lt;p&gt;I have to agree with Gordon on his comment that using Excel by itself is a great way to display a sitemap. My collegues and I have evolved from doing sitemaps years ago in Powerpoint (using the org chart feature), to Visio, to Excel.  The biggest advantage as Gordon points out is that Excel is portable, virtually everyone can open, print, and edit an Excel file. Why create in Visio if you have to convert to &lt;span class="caps"&gt;PDF&lt;/span&gt; before you can send it to your customers? Most of my customers do not have Visio.&lt;/p&gt;

	&lt;p&gt;I find that Excel gives me the flexibility that I need to create detailed sitemaps using basic Excel features (color, font sizes, adjusting column width, row height, hiding grid lines, shading, lines, boxes, etc.). When I&amp;#8217;m finished with the sitemap, you&amp;#8217;d be hard pressed to tell that it was done in Excel.&lt;/p&gt;

	&lt;p&gt;My collegues and I agree that this is the easiest way to create &lt;span class="caps"&gt;AND&lt;/span&gt; maintain sitemaps. For example, when you need to add a new item, you can simply add a row and/or cut and paste as required.&lt;/p&gt;

	&lt;p&gt;Multiple worksheets allow you to have sitemaps for different audiences if you need to convey different experiences for different user groups (think customer, administrator, etc.).&lt;/p&gt;

	&lt;p&gt;I&amp;#8217;d be happy to post an example of an Excel sitemap if someone can tell me how to attach a file to this site. I searched but couldn&amp;#8217;t find how to do it.&lt;/p&gt;

	&lt;p&gt;Cheers!&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2522</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2522</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:29 GMT</pubDate>
      <author>Jon Stuckey</author>
    </item>
    <item>
      <description>&lt;p&gt;A few other points. First, I don&amp;#8217;t want to take away from the value and power of a visual &amp;#8211; I think there&amp;#8217;s a need for simplifying the site mapping process, and I definitely want to try out these ideas. I find site maps especially useful in reports and presentations. &lt;br /&gt;One thing I&amp;#8217;ve found useful, refering back to the original excel spreadsheet &amp;#8211; I like to label &amp;#8220;Level 1&amp;#8221; &amp;#8220;Level 2&amp;#8221; as &amp;#8220;1-Click&amp;#8221; and &amp;#8220;2-Click&amp;#8221;. Even though this doesn&amp;#8217;t account for all paths to a page, such as home page call-outs, or for the fact that many people don&amp;#8217;t start at the home page, it does make explicit the answer to a question that every client will ask. &lt;br /&gt;Also, I use a lot of columns. So, for example, I&amp;#8217;ll have a column for page summary, a column for recommended words of copy, a column for author, etc. Then, when I need to print, depending on the audience, I&amp;#8217;ll hide various columns. So, for authors, I&amp;#8217;ll focus on the &amp;#8216;number of words&amp;#8217;, &amp;#8216;author&amp;#8217;, etc; whereas for a developer, I&amp;#8217;d show a column indicating any modules (if the site is being built on a &lt;span class="caps"&gt;CMS&lt;/span&gt; or other platform). That way, the Excel file serves a lot of purposes. So, if it can feed some visio diagrams too &amp;#8211; all the better!&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2521</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2521</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:29 GMT</pubDate>
      <author>Gordon Withers</author>
    </item>
    <item>
      <description>&lt;p&gt;Great, but what can you do for Omnigraffle Professional?&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2520</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2520</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:27 GMT</pubDate>
      <author>Anthony Armendariz</author>
    </item>
    <item>
      <description>&lt;p&gt;Would second the OmniGraffle / OmniOutliner recommendation.&lt;/p&gt;

	&lt;p&gt;I try to use Excel-only also (per Gordon&amp;#8217;s excellent suggestion, especiall &lt;span class="caps"&gt;WRT&lt;/span&gt; the file format problem) but find it breaks down in two places:&lt;br /&gt;&#8226; starts to be difficult to read past 2 levels&lt;br /&gt;&#8226; doesn&amp;#8217;t easily allow for brief page descriptions&lt;/p&gt;

	&lt;p&gt;Does anyone have an example of Excel-only that does this well?&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2519</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2519</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:27 GMT</pubDate>
      <author>Audrey Crane</author>
    </item>
    <item>
      <description>&lt;p&gt;Agree about not using sitemaps much &amp;#8211; just get too busy for big sites and then there&amp;#8217;s all the exceptions&amp;#8230; I put the sectional nav in Excel and flow-chart the exceptions (carts etc). However if I need something really good looking I&amp;#8217;ll use GraphViz (PC and Mac) to produce beautiful diagrams for IA from Excel but it is *quite* involved: You have to use the &amp;#8216;concatenate&amp;#8217; feature to write various pieces of column information into a single cell, then export that to a GraphViz friendly txt format. GraphViz can produce outstanding results but you have to sweat a little. &lt;a href="http://www.graphviz.org/" rel="nofollow"&gt;http://www.graphviz.org/&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2514</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2514</guid>
      <pubDate>Fri, 06 Apr 2007 20:51:29 GMT</pubDate>
      <author>allen o'leary</author>
    </item>
    <item>
      <description>&lt;p&gt;I&amp;#8217;ve had some success with OpenOffice.org Draw instead of Visio, but the stencil support isn&amp;#8217;t there.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2512</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2512</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:26 GMT</pubDate>
      <author>C. Dinos Papoulias</author>
    </item>
    <item>
      <description>&lt;p&gt;Thank you so much for the update. I was reading the old article recently and wondering whether I had the time to figure out for myself how to do this in &lt;span class="caps"&gt;V2003&lt;/span&gt;.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2510</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2510</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:26 GMT</pubDate>
      <author>Donna Maurer</author>
    </item>
    <item>
      <description>&lt;p&gt;After years of trying to create the world&amp;#8217;s greatest site map, I&amp;#8217;ve found that  the excel spreadsheet, all by itself, as displayed in step one &amp;#8211; the input tab &amp;#8211; does the trick. While lacking some of the visual appeal of a visio diagram, it provides many other benefits:&lt;br /&gt;1. No issues with file formats &amp;#8211; every client I&amp;#8217;ve worked with has Excel, while only a few have Visio&lt;br /&gt;2. Allows clients to edit the site map or insert comments and questions.&lt;br /&gt;3. Conveys the depth and breadth of a site at a glance.&lt;br /&gt;4. Easily add additional notes, such as references to a requirements document&lt;br /&gt;5. Easy to add other navigation oriented notation, such as footer links versus primary navigation.&lt;br /&gt;6. No space limitations &amp;#8211; no more &amp;#8220;oh no, my boxes are too big, this won&amp;#8217;t fit on a letter sized piece of paper, does our printer have any legal paper?&amp;#8221; &lt;br /&gt;7. Major time saver: more time architecting, less time diagramming; allows information architects to focus on information architecture.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2509</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2509</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:26 GMT</pubDate>
      <author>Gordon Withers</author>
    </item>
    <item>
      <description>&lt;p&gt;OmniGraffle (Pro) 4 has a built-in outliner in a side window (&amp;#8220;Utilities&amp;#8221;) that will allow you to create your hierarchical text-only view of the site, and the program &lt;em&gt;simultaneously&lt;/em&gt; draws the site map while you work.&lt;/p&gt;

	&lt;p&gt;Granted, this probably removes the handy &amp;#8220;share with others&amp;#8221; benefit described in the article, but if you&amp;#8217;re main concern is saving time and effort, this is the method I recommend.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2507</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2507</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:26 GMT</pubDate>
      <author>Bryan J Busch</author>
    </item>
    <item>
      <description>&lt;p&gt;I would also like to comment on another amazing diagramming application called &lt;a href="http://www.omnigroup.com/applications/omnigraffle/pro/" target="_blank" rel="nofollow"&gt;OmniGraffle Pro&lt;/a&gt; from OmniGroup. I have been using the Pro version since version 3.0. In conjunction with &lt;a href="http://www.omnigroup.com/applications/omnioutliner/pro/" target="_blank" rel="nofollow"&gt;OmniOutliner&lt;/a&gt; (very similar to the Outline Mode for MS Word) you can import directly into OmniGraffle to make sitemap diagrams.&lt;/p&gt;

	&lt;p&gt;The OmniGraffle / Outliner combo is for MacOSX exclusive, but to be honest its the best out there. It allows importing/exporting of Visio &lt;span class="caps"&gt;XML&lt;/span&gt; Diagrams, exports PDFs, JPGs, etc. I cannot speak more highly of this app suite. Where they failed at OmniWeb, they far exceeded with OmniGraffle Pro.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2501</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2501</guid>
      <pubDate>Fri, 06 Apr 2007 09:13:56 GMT</pubDate>
      <author>Jason Fields</author>
    </item>
    <item>
      <description>&lt;p&gt;I&amp;#8217;ve had some good luck with this Visio technique before. A couple of limitations are worth mentioning. Visio does not perform well with lots of boxes. It crashes a lot. Then there is the issue of formatting. The org chart wizard doesn&amp;#8217;t give a lot of options as far as when the finished product looks like.&lt;/p&gt;</description>
      <link>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2494</link>
      <guid>http://www.boxesandarrows.com/view/the_lazy_ia_s_guide_to_making_sitemaps#content_2494</guid>
      <pubDate>Fri, 26 Jan 2007 14:52:26 GMT</pubDate>
      <author>James Melzer</author>
    </item>
  </channel>
</rss>
