<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	
	<title>Acqal Blogging</title>
	<subtitle>Life, liberty, and the pursuit of creating the best official TYPO3 agency for support, training and website migration in the United States and abroad.</subtitle>
	<updated>2009-06-30T00:00:00-04:00</updated>
	<id>http://www.acqal.com/</id>
	<link rel="alternate" type="text/html" href="http://www.acqal.com/" />
	<link rel="self" type="application/atom+xml" href="http://www.acqal.com/rss.xml" />
	<rights>Acqal Corporation</rights>	
	<generator uri="http://www.typo3.com" version="4.2">TYPO3 - get.content.right</generator>
	
		
	<entry>
		<title>Add Custom CSS Classes to the TYPO3 RTE</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/add-custom-css-classes-to-the-typo3-rte/"/>
		<id>tag:acqal.com,2009:article182</id>
		<updated>2009-06-25T00:22:40-04:00</updated>
		<published>2009-06-24T23:16:25-04:00</published>
		<author>
			<name>Michael Cannon</name>
			<email>mc@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<img src="http://www.acqal.com/images/rtehtmlarea-block-style-r_-2.png" width="412" height="420" border="0" alt="rtehtmlarea block style" title="rtehtmlarea block style" />rtehtmlarea block style<p>The TYPO3 RTE is quite flexible. One easily proven aspect, is by the ability to select what CSS styling to apply by highlighting some text and choosing a custom CSS class from a drop-down. Furthermore, making this happen only takes a few minutes.</p>
<p>There's 2 basic steps to making custom CSS classes available in the RTE.</p><ol><li>Create custom classes in your CSS stylesheet, with only one per line.</li><li>Modify the RTE via Page TSConfig<ol><li>Link the RTE to the site CSS stylesheet</li><li>Assign the custom classes to text types</li></ol></li></ol><p>Sample <span class="coding">content.css</span> with custom classes.</p>
<pre>.coding { font-family: monospace; font-size: 1.1em;}<br />.note {background: #dfd; padding: 1em; border-top: 1px #bdb dotted; border-bottom: 1px #bdb dotted;}<br />.important {background: #ffd; padding: 1em; border-top: 1px #ddb dotted; border-bottom: 1px #ddb dotted;}<br />.warning {background: #fdd; padding: 1em; border-top: 1px #dbb dotted; border-bottom: 1px #dbb dotted;}<br />.float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em;}<br />.float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em;}<br />.center { text-align:center; margin: 0.5em auto}<br /><br />/* these are for showing alignment in RTE on the backend */<br />.align-left { text-align: left; }<br />.align-center { text-align: center; }<br />.align-right { text-align: right; }<br />.align-justify { text-align: justify; }</pre>
<p>RTE Page TSConfig sample</p>
<pre>RTE {<br />    default {<br />        # link to site css stylesheet<br />        contentCSS = fileadmin/templates/css/screen/content.css<br /><br />        # clear typical styling<br />        classesAnchor &gt;<br />        classesLinks =<br />        # set classes available to these properties. Paragraph is another name<br />        # for block<br />        classesCharacter := addToList(coding, note, important, warning)<br />        classesParagraph := addToList(coding, note, important, warning, float_left, center, float_right)<br />        classesTD := addToList(sub)<br />        classesTable := addToList(full, fixed)<br /><br />        # list all available classes here, otherwise they're removed on RTE save<br />        proc.allowedClasses := addToList(coding, note, important, warning, float_left, center, float_right, sub, full, fixed)<br />    }<br />}</pre>
<p>In the above Page TSConfig, we adjust the CSS stylesheet being referenced via <span class="coding">contentCSS</span>. A relative file path is from the website root with TYPO3 installed is sufficient.</p>
<p>Next, as we want to supplement, not replace the classes applicable, we use the <span class="coding">addToList</span> TypoScript function to add our custom CSS classes. These CSS classes are assigned to specific text types, like block text-strings, elements and tables as shown by the <span class="coding">classesCharacter</span> &amp; <span class="coding">classesParagraph</span> samples.</p>
<p class="important">Once you add your custom classes, you must make sure all of them are listed in the <span class="coding">proc.allowedClasses</span> property. Otherwise, your custom classes will not show up.</p>
<h3>Reference</h3><ul><li><a href="http://typo3.org/documentation/document-library/extension-manuals/rtehtmlarea_manual/1.7.4/view/3/6/" title="FAQ: How do I configure the editor to use my CSS styles?" target="_blank" >rtehtmlarea - FAQ: How do I configure the editor to use my CSS styles?</a></li><li><a href="http://www.acqal.com/blog/a/article/cheers-to-jweiland-for-typo3-best-practice-workshop/" title="Cheers to Jweiland for TYPO3 Best Practice Workshop" >TYPO3 Best Practices</a></li></ul><p>If you've got problems or questions, ask them in our comments section.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>TYPO3 Teaserbar and T3CON09</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/typo3-teaserbar-and-t3con09/"/>
		<id>tag:acqal.com,2009:article183</id>
		<updated>2009-06-27T11:57:15-04:00</updated>
		<published>2009-06-27T00:57:36-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p>I love my new HP Mini and wrote this blog entry in a text editor using it. When I was done, I set the mini down and the battery decided to fall out. Not good. I get to now rewrite my entry. At least this isn't as bad as losing an entire research paper when I was in grad school. I think I might save as I go this time :-)</p>
<h3>Acqal Exec Team Going to T3CON09</h3>
<h3>&nbsp;</h3>
<p>We are excited that the Acqal Executive Team will all be at T3CON09 in Frankfurt, for a variety of reasons. First is the conference itself, including tutorial day. The amount that may be learned is amazing and hard to describe. This year, there will be additional tracks, so there will be something for anyone connected with TYPO3 in any way, from developers, agency project managers, users, potential users, company representatives researching content management systems, designers, marketers, and everyone in between.</p>
<p>Next is the opportunity to meet old friends and meet new ones, including face-to-face meeting people we know from the Internet or by reputation, but have never actually met. Plus, meeting completely new people. The opportunity for making friends and networking is probably the most important part of any industry conference.<br /><br />There is also the opportunity for meetings with people from other companies who are interested in discussing potential business endeavors. I already have two meetings set up with principles from other companies interested in exploring mutually beneficial relationships. We will be there from 7 September to the 13th, so can be available both before and during the conference. Being there before the conference especially offers opportunities to meet with European companies looking for a US or Asian connection (we have offices in two US states and Taiwan). If anyone would like to get together with one of us or all three, please let us know. I missed many opportunities at the last T3CON I attended just due to no prior planning.</p><ul><li>Michael Canon - <a href="javascript:linkTo_UnCryptMailto('jxfiql7jzXxznxi+zlj');" title="T3CON09 email mc@acqal.com" >mc[at]acqal[dot]com</a> - TYPO3 technical guru, sales and marketing, business development</li><li>Virgil Huston - <a href="javascript:linkTo_UnCryptMailto('jxfiql7seXxznxi+zlj');" >vh[at]acqal[dot]com</a> - Training and training business development, project management, human resources</li><li>Nicole Johnson - <a href="javascript:linkTo_UnCryptMailto('jxfiql7kgXxznxi+zlj');" >nj[at]acqal[dot]com</a> - Design and design business development, sales and marketing, SEO</li></ul><h3>New Extension: Teaserbar</h3>
<p><br />I haven't tried this one yet, just heard about it today, but it looks pretty interesting and useful. Mario Rimann has created an extension that shows large teaser images to convey an emotional image to the visitor of the website.<br /><br />From <a href="http://rimann.org/blog/2009/06/new-extension-teaserbar/" target="_blank" >Mario's blog</a>:</p>
<p><div class="indent">The extension adds a front-end plugin that embeds a flash file. This flash file is fed with dynamically generated XML-data to display images/text. The data for the XML is loaded from the database, where teaser records are stored. Some features:</p><ul><li>each teaser can be assigned to one or multiple categories</li><li>records can be localized</li><li>the same teaser will not be shown twice in a row to the same visitor</li><li>you can mark some of the teasers as &quot;fallback&quot; - these will be shown if no other teaser is matching for the request</li><li>teasers can be linked to internal pages</li></ul><p>&nbsp;</p>
<p></div></p>
<p>And, once again, if you haven't taken the TYPO3 Training Survey, <a href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" ><b>click here</b></a> and do it now! It only takes ten minutes.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>FLOW3 and TYPO3 Versions 4.X and 5.0</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/flow3-and-typo3-versions-4x-and-50/"/>
		<id>tag:acqal.com,2009:article181</id>
		<updated>2009-06-20T07:47:15-04:00</updated>
		<published>2009-06-20T01:01:34-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<img src="http://www.acqal.com/images/mommabird-m_-3.jpg" width="420" height="280" border="0" alt="Mother Bird on Nest" title="Mother Bird on Nest" />Mother Bird on Nest<p><img alt="FLOW3 logo" title="FLOW3 logo" style="padding-right: 5px; padding-bottom: 5px; float: left;" src="http://www.acqal.com/fileadmin/media/blog/f3_logo.gif" height="40" width="109">The recent release of FLOW3 1.0.0 alpha 1 has caused quite a buzz in the TYPO3 community and should also be creating a similar buzz in the PHP development community as a whole. There is also some confusion in the TYPO3 world regarding FLOW3 and the upcoming release of TYPO3 version 5.0 versus the current version 4.X.<br /><br />Spring was an appropriate time to put out the first FLOW3 release as this is a season of rebirth. It reminds me of the wren that built its nest and raised its three chicks in our basement this spring. The bird nest was a surprise and fun to keep an eye on. We also worried that our presence would interfere with the safety of the eggs and then chicks. We had to leave the door to the outside open until the mother bird was settled down for the night and remember to reopen it in the morning so she could get food for herself and her babies during the day. All turned out well, the eggs hatched, momma bird raised her chicks and when it was time, the chicks took flight and went out into the world on their own.<br /><br />Change is always a stressful thing for people to deal with and TYPO3 version 5, which will be built using the FLOW3 framework, is no exception. Yet, I think this is the best thing that has ever happened to TYPO3.<br /><br />Ever since the development of TYPO3 version 5 was announced and it became known that the new version would be a complete departure from earlier versions, some people have been worried that it would hurt business for TYPO3 agencies. Version 4 would be the last in its line and not be&nbsp; compatible with version 5. People worried that potential clients would not opt for the current versions fearing that they would have to completely redo their web sites after version 5 was released. If they did not go to that expense, they would be stuck with a soon to be outdated CMS.<br /><br />At T3CON07, Kasper and others gave talks on how the transition would work and attempted to ease people's fears. Now, in 2009, they have surpassed all expectations. At this point in the development of version 5, the team could not have done a better job, this is probably the best transition start of its kind I have ever seen. Here is why in a nutshell:</p><ul><li>FLOW3 is a new and improved PHP development framework that TYPO3 version will be built on. But, the new framework has far wider application in the PHP development world. Not only will it be optimized for TYPO3, it will bring TYPO3 awareness to a much wider audience due to the association of the two. Pretty clever, I think, as a marketing strategy.</li></ul><ul><li>TYPO3 version 4.X will continue to be supported for years to come. This will hopefully calm some of those fears of being stuck with an outdated CMS.</li></ul><ul><li>The TYPO3 version 5 team is making it a priority to make it as painless as possible for extension developers to transition their extensions to the new version.</li></ul><p>So, far, it looks like everything is being done right and this will be very good for TYPO3.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>10 Proven Website Essentials</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/10-proven-website-essentials/"/>
		<id>tag:acqal.com,2009:article180</id>
		<updated>2009-06-15T10:29:58-04:00</updated>
		<published>2009-06-15T10:21:43-04:00</published>
		<author>
			<name>Michael Cannon</name>
			<email>mc@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p>Building and maintaining a website these days can be tough business. Whether you're a beginner or a professional, many of the issues faced for having a successful website are the same. With solid preparation, like these top 10 proven website essentials, getting started and staying online is made easier.</p>
<p>The 10 website essentials have below been pulled together by combing over 16 years of online content publishing and website basics research. More importantly, these essentials are ordered by frequency of consensus by fellow web content management agencies and consultants. </p>
<p>Through this simplified and consolidated knowledge, you can be sure that these website essentials offer the most solid foundation possible for your website.</p>
<h1>Content</h1>
<p>There's a current day meme of “content is king” that states without quality, direct and insight content, your audience will leave your site and search engines won't build up results with your website in them. Give readers and search engines something worthwhile to read. </p>
<p>Spend time writing, it's worth it. A couple of recently read research articles have reported that a single quality web page of content is worth $ 7,000 over its lifetime. So, research and write for a few hours to earn $ 2,333 an hour. That's time well spent.</p>
<p>Targeted content can be written using the AIDA style: Attention, Interest, Detail and Action.</p>
<h3>Attention</h3>
<p>Catch the readers eye. Bright, shiny things...</p>
<h3>Interest</h3>
<p>You've got the readers eyeball on target now, so give them a reason to read more. Bait the reader...</p>
<h3>Detail</h3>
<p>Give the reader some useful information. Convince them that you're the professional that can solve their problem. Hook the reader...</p>
<h3>Action</h3>
<p>Typically called a call to action, this is usually a form requesting the readers email in trade for a white paper or sample of some kind. Essentially, you're turning the reader into a sales lead. Reel the reader in...</p>
<h2>Interaction</h2>
<p>Besides content, engaging your readers through videos, images, blogging, events, social networking, newsletters, comments and more gives reasons for them to return. </p>
<h2>Contact Information</h2>
<p>Make your underlying business address, phone number and email addresses readily accessible for your site visitors. Don't hide this information, else you'll stand a good chance to make visitors feel insecure.</p>
<h2>Design</h2>
<p>If you're going to have a look beyond black text on white background, hire a professional. They'll be able to create a look and feel and layout that'll work with your branding and give a positive, unique look. </p>
<p>There's nothing tackier than dated layouts, typography and graphics that look like Word Art was used.</p>
<h2>Accessibility</h2>
<p>On two fronts, not all visitors “see” and use content presentation that makes sense. If you're going to use images or videos, be sure that there are textual alternatives for the blind. Next, if you're going to make a data chart, does that information presented actually convey what you want it to?</p>
<h2>Maintenance</h2>
<p>Behind the scenes, the website should be easy to update in regards to templates, pages and content. Dynamic websites based upon web content management systems like TYPO3 and Wordpress are excellent tools for enabling authors and editors to create and edit pages and content anytime they can open an Internet browser. </p>
<p>If your authors and editors can't easily maintain the website, content will go stall and visitors will stop coming as they're bored and think you don't care anymore.</p>
<h2>SEO</h2>
<p>Search engine optimization, SEO, generally means optimizing page title, META keyword &amp; description, URLs and link text found in your website for improved placement in search engine results. </p>
<p>This SEO work plus quality content play key parts in getting your website found by visitors don't know you're offering exactly what they need. These visitors will only find you through search engine results.</p>
<h2>Usability</h2>
<p>Don't make your website visitors work to get around your website. When laying out the site, think about navigation and information architecture. A sitemap can help with the website overview, but if you've got 10,000 pages, a sitemap might be overwhelming when information architecture hasn't been thought through.</p>
<h2>Grammar and Spelling</h2>
<p>Critically check your grammar and spelling even after spell check is ran. Read your content aloud and ensure what you wrote is really what you want to say. Even better, save what you've done and come back to it an hour later and then check again before publishing.</p>
<h2>Sample and Trials</h2>
<p>An easy way to increase sales and drive traffic to your website is to offer working product samples and no-cost, time-limited trials.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>Netbooks and Productivity</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/netbooks-and-productivity/"/>
		<id>tag:acqal.com,2009:article179</id>
		<updated>2009-06-13T13:40:31-04:00</updated>
		<published>2009-06-13T13:39:14-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p>The reason I didn't get my usual blog posting out yesterday is because I was doing client work and then got preoccupied with getting my new HP Mini 1000 netbook up and running. This is one sweet little machine.<br /><br /><img src="uploads/RTEmagicC_mini.jpg.jpg" width="480" height="334" alt=""><br /><br />My laptop has seen better days and is still quite useful, but not for toting around. For travel, I had a Verizon USB wireless card that was eligible for an upgrade. When I saw the deal on the HP Mini I jumped on it. Standard Verizon price for the mini with a two year contract ($59.95/mo for 5GB transfer, same as I was paying for the USB card) is $ 199. With the upgrade eligibility, it was $ 149.00 with a new two year agreement.<br /><br />My only other option was an Acer netbook with ATT, but for best coverage where I live and mostly travel, Verizon was the only choice. I would have picked the HP over the Acer, in any case.<br /><br />For those thinking about getting a mini (and you can buy them without a mobile broadband plan for two or three hundred dollars more), here is my take so far.<br /><br /><b>Pros</b></p><ul><li>It is perfect size and unbelievably portable, makes my laptop look like ENIAC. One reason I have never had a palm device or Blackberry is that I can't deal with the tiny keyboards. The mini has a 92% sized keyboard and it rocks.</li><li>While some reviews I read criticized HP for using Windows XP as the operating system, I see this as a plus. I hate Vista, I know XP, and software I want to run on the mini will work. XP has its faults, but it is still Microsoft's best OS, in my opinion.</li><li>Again, the 80GB hard drive has also been criticized as too small, but I see it as fine for me and the purposes the mini serves.</li><li>It boots up quickly and comes with only a few software &quot;freebies&quot; that you will want to get rid of, like the Norton trial, AIM, and MS Works. Not like the tons of garbage that comes on a laptop or desktop.</li><li>Works like a champ on a&nbsp;ethernet, wireless, and the Verizon broadband network.</li><li>Will work overseas with temporarily switching to the Global plan, or, if you travel a lot, you can get the global plan from the start ($ 129/mo)</li><li>Has a built-in webcam</li><li>Has built in Bluetooth</li></ul><p><b>Cons</b></p><ul><li>Took me a long time to get it to work on my wireless network, your mileage may vary. Once working, all was good with the world</li><li>AC power connector is loose, you have to be aware when it is not actually connected.</li><li>Comes with 1GB of RAM, expandable to 2GB, but you can't get it from Verizon online, you have to go to one of their stores. My solution is to just buy the memory from somewhere else at a better price.</li><li>Comes with a 3-cell battery, good for around 2.5 hours. The optional 6-cell battery is $ 149 from Verizon. I have found them a lot cheaper on ebay and some online stores.</li><li>Has two USB connections, not much if you are going to use a mouse, but you can always plug in a hub.</li><li>Has a VGA port, but requires an adapter to connect to a monitor or projector.</li><li>Does not have MS Power Point, but does have a Power Point viewer so you can give presentations (I installed Open Office and I could have installed MS Office if I had wanted to, I suppose).</li><li>Comes with MS Works, a worthless program if I ever saw one.</li><li>Touchpad is the worst feature, but I don't like touchpads, in any case, I'll be using a mouse most of the time.</li></ul><p>Some of the cons could actually be considered pros, and the pros outweigh the cons on an overall basis in a big way. I highly recommend this computer.<br /><br />I plan to keep my mini lean and mean. I uninstalled software I don't need and have installed only Skype and Open Office so far. I may add a couple more items, but not many.</p>
<p>Please take the <a href="http://typo3/http://www.acqal.com/?id=154" target="_blank" >Training Methods Survey</a>!<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>Random Thoughts: T3CON09,  Lodging Woes, Germany, and TYPO3 Training</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/random-thoughts-t3con09-lodging-woes-germany-and-typo3-training/"/>
		<id>tag:acqal.com,2009:article178</id>
		<updated>2009-06-06T00:30:09-04:00</updated>
		<published>2009-06-05T23:56:15-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<img src="http://www.acqal.com/images/rodalben-R_.jpg" width="420" height="315" border="0" alt="Hotel in Rodalben, Germany" title="Hotel in Rodalben, Germany" />Hotel in Rodalben<p>I am really looking forward to <a href="http://t3con09-frankfurt.typo3.org/" target="_blank" >T3CON09</a>. I get to see European friends and meet more, learn more and more about TYPO3, and I have an excuse to go to Germany. I love Europe, I would live there if it were practical. Hopefully, at least I will be able to retire there,<br /><br />Back in the day, I spent five years in Germany, in a small village called Merzalben, not far from Pirmasens, where I worked while a soldier in the US Army. We were 15 minutes from an unguarded border crossing to France, so also went there often (that was before the open borders).<br /><br />I was the only American in Merzalben, I was not one of those Americans who complained that German beer is not like US Budweiser (which is swill) and wanted nothing to do with the people whose country we were living in. I loved it there. After T3CON07, I took my wife to Merzalben and it really hadn't changed a bit and the ruins of Grafenstein still silently overlooked the village.</p>
<p>During World War II, my landlord's father and he had reinforced the old tower for anti-aircraft guns (they were masons). Then Alfons (my landlord) was sent to the eastern front, where he was eventually captured and spent years in a Siberian salt mining camp. He didn't get home until 1948 or so. He was 73 years old back then and cooked with a wood stove/oven and had a wood fired hot water heater. He could bake bread better than any electric oven. He spoke broken English and I very broken German, so for a long time, I thought the German word for &quot;money&quot; was &quot;monig,&quot; his way of saying the English word.<br /><br />OK, so you can tell I am looking forward to getting back to Germany. <br /><br />T3CON09 is being held in Frankfurt at the Holiday Inn Frankfurt City South Hotel. It looks like a really nice place for a conference and expensive for a room. But, I checked yesterday to see prices and found it was fully booked already. So are half the other hotels and even hostels I looked up.<br /><br />I know I can find a place to stay somewhere, hopefully somewhere that won't take me hours to get to the conference. But what really disappoints me is that one of the major advantages of a conference like T3CON09 is that the majority of the attendees are staying in the same place. People can gather at nearby bars and restaurants or in the hotel itself and not have to travel to and from a hotel somewhere else. At a minimum, people should all be able to stay within a short distance from the conference location.<br /><br />I would like to see an effort to identify good and inexpensive hotels, self-catering lodgings, etc., where T3CON09 attendees can concentrate since we can't all stay at the same hotel.<br /><br />On the <a href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" target="_blank" >Typo3 Training Methods Effectiveness Survey</a>. I am really happy to see good participation, mainly from Europe and the US, but also from other places. I would like to get as many responses as possible from across the world, especially countries with large concentrations of people working with TYPO3, such as India, Ukraine, and Russia, just to name a few.<br /><br />So, if you haven't already taken the survey, please do.<a href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" target="_blank" > Click here</a>.<br /><br />I would also appreciate any promotion you could give the survey on your blogs, tell your friends, etc.<br /><br />Once more here is the link :-) <a href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" target="_blank" >http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/</a><br /><br />If anyone coming to the conference is from the southern Rheinland-Pfalz or Saarland, please bring me a Parkbrauerei Perminator!<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>3 More How-to's on Using TYPO3's tt_news</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/3-more-how-tos-on-using-typo3s-tt-news/"/>
		<id>tag:acqal.com,2009:article177</id>
		<updated>2009-06-01T01:53:43-04:00</updated>
		<published>2009-06-01T00:25:34-04:00</published>
		<author>
			<name>Michael Cannon</name>
			<email>mc@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p>About a month ago, I presented <a href="http://www.acqal.com/blog/a/article/10-different-ways-to-use-typo3s-tt-news/" title="10 Different Ways to Use TYPO3's tt_news" >10 different ways of using tt_news</a> for various clients. That was then followed up by couple of posts covering the how-to of the <a href="http://www.acqal.com/blog/a/article/5-how-tos-on-using-typo3s-tt-news/" title="5 How-to's on Using TYPO3's tt_news" >first 5</a> and <a href="http://www.acqal.com/blog/a/article/2-more-how-tos-on-using-typo3s-tt-news/" title="2 More How-to's on Using TYPO3's tt_news" >2 more different ways of tt_news usage</a>.</p>
<h2>Cephalon.com news product and Archive Menu</h2>
<p><a href="http://Cephalon.com" target="_blank" >Cephalon.com</a> is one of the world’s top ten biopharmaceutical companies with over 30 products worldwide for innovative treatments of central nervous system disorders, pain and cancer. Instead of trying to create a specific page for the top products, they let the product's menu listing be auto-generated. On a similar note, the annual archive is auto-generated as well.&nbsp;</p>
<p><img alt="Cephalon.com news product and archive menu" title="Cephalon.com news product and archive menu" src="uploads/RTEmagicC_Cephalon.com_news_product_archive_04.png.png" height="472" width="404"></p>
<h3>How-to for news product and Archive Menu</h3>
<p>This implementation of tt_news categories or archives into the navigation structure by Custom Media Labs is really one of the neatest combination of TypoScript and news content elements that I've ever come across. </p>
<p>In essence, the menu is created via multiple HMENU and TMENU objects as normal. However, the news year and category aspects are incorporated into the menu via RECORDS objects surrounded by TEXT objects to properly open and close the ordered tags. </p>
<p>By creating each part of the menu as an independent object and then joining it together in a COA object, maintenance is made simple. The TypoScript follows.</p>
<pre>#Remove Anchor Tags<br />tt_content.stdWrap.dataWrap &gt;<br /><br />lib.first_sub_nav = HMENU <br />lib.first_sub_nav.special = list<br />lib.first_sub_nav.special.value = 13<br />lib.first_sub_nav {<br />	1 = TMENU<br />	1 {<br />		noBlur = 1<br />		expAll=0<br />		wrap =  | <br />		NO.allWrap = &lt;li&gt;|&lt;/li&gt;<br />		NO.stdWrap.field = title<br />		NO.doNotLinkIt = 1<br />		NO.stdWrap.htmlSpecialChars = 1<br />		ACT &lt; .NO <br />		ACT = 1<br />		ACT.allWrap = &lt;li class=&quot;section&quot;&gt;|&lt;/li&gt;<br /><br />		IFSUB &lt; .NO<br />		IFSUB = 1<br />		IFSUB.allWrap = &lt;li class=&quot;section&quot;&gt;|&lt;/li&gt;<br /><br />		ACTIFSUB &lt; .NO<br />		ACTIFSUB = 1<br />		ACTIFSUB.allWrap = &lt;li class=&quot;section&quot;&gt;|&lt;/li&gt;<br /><br />		CURIFSUB &lt; .IFSUB<br />		CURIFSUB = 1<br />		CURIFSUB.allWrap = &lt;li class=&quot;section&quot;&gt;|&lt;/li&gt;<br />	} <br />}<br /><br />lib.second_sub_nav1 = HMENU <br />lib.second_sub_nav1.special = list<br />lib.second_sub_nav1.special.value = 81<br />lib.second_sub_nav1.entryLevel = 1<br />lib.second_sub_nav1{<br />	1 = TMENU<br />	1 {<br />		noBlur = 1<br />		expAll=0<br />		wrap =  | <br />		NO.allWrap = &lt;li&gt;|<br />		NO.stdWrap.field = title<br />		NO.stdWrap.htmlSpecialChars = 1<br /><br />		ACT &lt; .NO <br />		ACT = 1<br />		ACT.allWrap = &lt;li class=&quot;open&quot;&gt;|<br />	} <br />	2 = <br />}<br /><br />lib.second_sub_nav2 = HMENU <br />lib.second_sub_nav2.special = list<br />lib.second_sub_nav2.special.value = 267<br />lib.second_sub_nav2.entryLevel = 1<br />lib.second_sub_nav2{<br />	1 = TMENU<br />	1 {<br />		noBlur = 1<br />		expAll=0<br />		wrap =  | <br />		NO.allWrap = &lt;ul&gt;&lt;li class=&quot;close&quot;&gt;|&lt;/li&gt;<br />		NO.stdWrap.field = title<br />		NO.stdWrap.htmlSpecialChars = 1<br /><br />		ACT &lt; .NO <br />		ACT = 1<br />		ACT.allWrap = &lt;li class=&quot;open&quot;&gt;|<br />	} <br />}<br /><br />lib.second_sub_nav3 = HMENU <br />lib.second_sub_nav3.special = list<br />lib.second_sub_nav3.special.value = 269<br />lib.second_sub_nav3.entryLevel = 1<br />lib.second_sub_nav3{<br />	1 = TMENU<br />	1 {<br />		noBlur = 1<br />		expAll=0<br />		wrap =  | <br />		NO.allWrap = &lt;li&gt;|<br />		NO.stdWrap.field = title<br />		NO.stdWrap.htmlSpecialChars = 1<br /><br />		ACT &lt; .NO <br />		ACT = 1<br />		ACT.allWrap = &lt;li class=&quot;open&quot;&gt;|<br />	} <br />}<br /><br />lib.second_sub_nav4 = RECORDS<br />lib.second_sub_nav4.dontCheckPid = 1<br />lib.second_sub_nav4.tables = tt_content<br />lib.second_sub_nav4.source = 481<br /><br />lib.second_sub_nav5 = TEXT<br />lib.second_sub_nav5.value = &lt;/ul&gt;&lt;/li&gt;<br /><br />lib.second_sub_nav6 = HMENU <br />lib.second_sub_nav6.special = list<br />lib.second_sub_nav6.special.value = 80,103,79<br />lib.second_sub_nav6.entryLevel = 1<br />lib.second_sub_nav6{<br />	1 = TMENU<br />	1 {<br />		noBlur = 1<br />		expAll=0<br />		wrap =  | &lt;/ul&gt;<br />		NO.allWrap = &lt;li&gt;|&lt;/li&gt;<br />		NO.stdWrap.field = title<br />		NO.stdWrap.htmlSpecialChars = 1<br /><br />		ACT &lt; .NO <br />		ACT = 1<br />		ACT.allWrap = &lt;li class=&quot;selected&quot;&gt;|&lt;/li&gt;<br /><br />		IFSUB &lt; .NO<br />		IFSUB = 1<br />		IFSUB.allWrap = &lt;li class=&quot;close&quot;&gt;|&lt;/li&gt;<br /><br />		ACTIFSUB &lt; .NO<br />		ACTIFSUB = 1<br />		ACTIFSUB.allWrap = &lt;li class=&quot;open&quot;&gt;| <br /><br />		CURIFSUB &lt; .IFSUB<br />		CURIFSUB = 1<br />		CURIFSUB.allWrap = &lt;li class=&quot;open&quot;&gt;|  <br />	}<br />}<br /><br />lib.sub_nav = COBJ_ARRAY<br />lib.sub_nav {<br />    30 &lt; lib.first_sub_nav<br />    40 &lt; lib.second_sub_nav1<br />    50 &lt; lib.second_sub_nav2<br />    60 &lt; lib.second_sub_nav3<br />    70 &lt; lib.second_sub_nav4<br />    80 &lt; lib.second_sub_nav5<br />    90 &lt; lib.second_sub_nav6<br />}<br /><br />plugin.tt_news {<br />    displayCatMenu {<br />       catmenu_stdWrap.wrap = &lt;ul&gt;|&lt;/ul&gt;<br />       catmenuHeader_stdWrap.wrap = <br />       catmenuItem_ACT_stdWrap.wrap = &lt;li class=&quot;selected&quot;&gt;|&lt;/li&gt;<br />    }<br />    displayFirstCategory = 1<br />}</pre>
<p>In above, <span class="coding">lib.second_sub_nav4</span> is where the News Releases Products Menu content element is included into the menu structure as the category menu. As you can see below, it's a very simple news content element of the CATMENU view.</p>
<p><img src="uploads/RTEmagicC_Cephalon_News_Releases_Products_Menu_content_element_txdam903_4fb9ab.png.png" title="Cephalon News Releases Products Menu content element" height="289" width="480" alt=""></p>
<h2>Topconpositioning.com products are news too</h2>
<p><a href="http://topconpositioning.com" target="_blank" >Topcon Positioning Systems</a> provides the innovative positioning technology principally for the construction industries. When a year-old, high-end, high-cost proprietary product and content management system failed to do as promised for Topcon Positioning Systems TPS, they turned to TYPO3. Now TPS is managing and presenting latest news, press releases and even products with auto-generating menus and easy to navigate pages.</p>
<p><img alt="Topconpositioning.com products are news too" title="Topconpositioning.com products are news too" src="uploads/RTEmagicC_Topconpositioning.com_news_as_products_04.png.png" height="304" width="480"></p>
<h2>How-to on products are news too</h2>
<p>While I'd like to say that this news as products customization is a major deal, the reality is that it's not. </p>
<p>Adding new fields to tt_news records is as easy as using the TYPO3 Extension Manager and Kickstarter to create the needed fields. Afterwards, you can modify the resulting ext_tables.php file to group new fields into tabs. </p>
<p>By grouping the new fields into tabs, you can better control the layout of the tt_news record and prevent over whelming editors. The following code comes from ext_tables.php to demonstrate grouping added tt_news fields into tabs. Take a look at the following screenshots to see them in action.</p>
<pre>t3lib_div::loadTCA(&quot;tt_news&quot;);<br />t3lib_extMgm::addTCAcolumns(&quot;tt_news&quot;,$tempColumns,1);<br /><br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;Product<br />info,tx_tttopconproducts_product_image,tx_tttopconproducts_product_image_alt;;;;1-1-1,tx_tttopconproducts_product_fullimage,tx_tttopconproducts_product_fullimage_alt,tx_tttopconproducts_related_file,tx_tttopconproducts_filedescriptions,tx_tttopconproducts_manual_file,tx_tttopconproducts_manualdescriptions,tx_tttopconproducts_marketing_file,tx_tttopconproducts_marketingdescriptions,tx_tttopconproducts_specifications,tx_tttopconproducts_news_order,tx_tttopconproducts_ordervideo_link&quot;);<br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;Descriptions,tx_tttopconproducts_shortdescription,tx_tttopconproducts_fulldescription;;;richtext[paste|bold|italic|underline|formatblock|class|left|center|right|orderedlist|unorderedlist|outdent|indent|link|image]:rte_transform[mode=ts];1-1-1;&quot;);<br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;Techs,tx_tttopconproducts_technologies_box;;;richtext[paste|bold|italic|underline|formatblock|class|left|center|right|orderedlist|unorderedlist|outdent|indent|link|image]:rte_transform[mode=ts];1-1-1&quot;);<br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;Product kits,tx_tttopconproducts_productkits_box;;;richtext[paste|bold|italic|underline|formatblock|class|left|center|right|orderedlist|unorderedlist|outdent|indent|link|image]:rte_transform[mode=ts];1-1-1&quot;);<br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;News system,tx_tttopconproducts_news_url,tx_tttopconproducts_related_fielarchive_item;;;;1-1-1&quot;);<br />t3lib_extMgm::addToAllTCAtypes(&quot;tt_news&quot;,&quot;--div--;Right Urls Area,right_part_news,right_part_categories,right_part_pages;;;;1-1-1&quot;)</pre>
<p>In case you're wondering, $tempColumns, is configuration array of the new tt_news fields.</p>
<p><img src="uploads/RTEmagicC_Topcon_product_news_record_-_scanning_-_Product_Info_txdam905_11df0a.png.png" title="Topcon product news record - scanning - Product Info" height="391" width="480" alt=""></p>
<p><img src="uploads/RTEmagicC_Topcon_product_news_record_-_scanning_-_Description_txdam904_cf4298.png.png" title="Topcon product news record - scanning - Description" height="399" width="480" alt=""></p>
<h2>Acqal.com Most Popular Blog Posts</h2>
<p><i>Minor bout of self-promotion.</i></p>
<p><a href="http://www.acqal.com/typo3-cms-typo3-website-migration/" >Acqal.com</a> is an official&nbsp;TYPO3 agency in the United States. To let our blog readers know what other have found most interesting, we offer a popular blog posts listing.</p>
<p><img alt="Acqal.com most popular blog posts" title="Acqal.com most popular blog posts" src="uploads/RTEmagicC_Acqal.com_most_read_news_03.png.png" height="356" width="238"></p>
<h3>How-to for Most Popular Blog Posts</h3>
<p>This tt_news view is majorly handled by the <a href="http://typo3.org/extensions/repository/view/newsreadedcount/current/" title="News readed count" target="_blank" >TYPO3 extension newsreadedcount</a>. As a bonus, you can check in the tt_news records themselves for the single-view read counts if you don't show the counts in the popular post entry.</p>
<p><img src="uploads/RTEmagicC_tt_news_-_How_often_the_News_was_in_the_single-view_shown_txdam906_0b6371.png.png" title="tt_news - How often the News was in the single-view shown" height="61" width="316" alt=""></p>
<p><img src="uploads/RTEmagicC_tt_news_-_Popular_Blog_Posts_txdam907_548601.png.png" title="tt_news - Popular Blog Posts" height="227" width="240" alt=""></p>
<h3>Got More Examples or Have Questions?</h3>
<p>Please share them by commenting on this blog post.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>TYPO3 Questionnaire Extension - Powerful and Easy to Use</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/typo3-questionnaire-extension-powerful-and-easy-to-use/"/>
		<id>tag:acqal.com,2009:article176</id>
		<updated>2009-05-30T01:03:04-04:00</updated>
		<published>2009-05-30T00:15:13-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p>The past couple of weeks, I have been consumed with getting the TYPO3 Training Method Effectiveness Survey up and running and now trying to promote it so as to get maximum responses from as wide a range of TYPO3 users at all levels across the world as possible.</p>
<p>By the way, if you haven't taken the survey already, please do, it only takes a few minutes. <a mce_href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" target="_new" href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/">Click here for the survey</a>. </p>
<p>I used the <a mce_href="http://typo3.org/extensions/repository/view/pbsurvey/current/" target="_new" href="http://typo3.org/extensions/repository/view/pbsurvey/current/">TYPO3 extension Questionnaire (pbsurvey)</a> to put the survey together and the ease of use and excellent manual allowed me to concentrate on survey design rather than spend a lot of time learning how to use the extension.&nbsp;Patrick Broens has done an excellent job all around with this one. The manual even gives good advice on how to design a survey.</p>
<p>The related extension&nbsp;<a mce_href="http://typo3.org/extensions/repository/view/pbsurveyexport/current/" target="_new" href="http://typo3.org/extensions/repository/view/pbsurveyexport/current/">Questionnaire export (pbsurveyexport)</a> allows you to export the results into a csv file that can be analyzed in statistical packages like SPSS and OpenStat, meaning you can use this extension to do serious statistics. This is not a simple poll type extension.</p>
<p>One of the most impressive things is the wide range of question types supported, from choice to matrix to open-ended to presentation, 16 choices in all. Questions with choices may have one only or multiple answers, responses can be mandatory or not, and presentation types are not really questions, per se, but allow you to format and present information pertaining to the questions in a variety of ways. </p>
<p><img complete="true" src="http://www.acqal.com/fileadmin/media/blog/questiontypes.jpg" height="474" width="361" alt="">&nbsp;</p>
<p>As an example, I used the Matrix - One Answer per Row (Option Buttons) question type for my main question. I didn't want people to enter more than one response as the responses will be analyzed numerically and, for my questions, only one answer is possible or the response becomes meaningless. With this question type, you can have as many rows as you want (see below), which could also be looked at as an easy way to ask many similar questions at once. I was also able to set it so each person&nbsp;can only complete the survey once (subject to the usual limitations of identifying repeat users).</p>
<p>The answers for this question type are entered using the Answers Wizard. This comes with prepopulated selections or you can make up your own. In this case, I was looking for a 1 to 5 range of Very Ineffective to Very Effective and selected this prepopulated option. I added the &quot;Don't Know&quot; response because people should not be forced to make a judgment on something they are not familiar with.</p>
<p>&nbsp;<img complete="true" src="uploads/RTEmagicC_matrixexample.jpg.jpg" height="314" width="480" alt=""></p>
<p>Here is what this question looks like on the front end:</p>
<p><img complete="true" src="uploads/RTEmagicC_matrixfrontend.jpg.jpg" height="192" width="480" alt=""></p>
<p>To see eaxmples of other question types, please take the training method effectiveness survey! <a mce_href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" target="_new" href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/">Click here for the survey</a>. </p>
<p>What I have written here only scratches the surface of this excellent and versatile extension.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>TYPO3 Training - What Works?</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/typo3-training-what-works/"/>
		<id>tag:acqal.com,2009:article175</id>
		<updated>2009-05-23T00:01:33-04:00</updated>
		<published>2009-05-22T23:49:50-04:00</published>
		<author>
			<name>Virgil Huston</name>
			<email>vh@acqal.com</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<h3>TYPO3 Training Method Effectiveness Survey Launched</h3>
<p>I have written a number of blog postings here about TYPO3 training and what I perceive as problems associated with overcoming the TYPO3 learning curve, a factor that is often mentioned (perhaps more than any other) as a reason for not using TYPO3 by individuals, agencies and potential clients of TYPO3 agencies. <br /><br />I am not going to repeat these opinions nor am I going to link to the previous blogs because all they are is opinion and educated guessing based on what I have heard and read in the TYPO3 and wider CMS / WMS world. We all know about opinions, I think.<br /><br />So, I have designed a training method effectiveness survey to actually try to identify what the most effective methods of learning TYPO3 are for people involved in any way with TYPO3. While the methods you prefer may apply to learning other things, this survey asks you to focus on your experience with TYPO3.<br /><br />In order to get good results, we need as many responses as possible from people at all levels of TYPO3 expertise, all ages, men and women, and as many countries as possible (with as many responses from each country as we can get). Please take a few minutes to complete the survey and ask everyone you know who is involved with TYPO3 in any way to complete it.<br /><br /><a href="http://www.acqal.com/typo3-tutorial-typo3-video/training-method-survey/" ><b>Click here to take the survey</b></a>.<br /><br />Thanks, I look forward to seeing, analyzing, and sharing the results.<br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
		
	<entry>
		<title>Nominate TYPO3 and FLOW3 for the SourceForge Community Choice Awards</title>
		<link rel="alternate" type="text/html" href="http://www.acqal.com/blog/a/article/nominate-typo3-and-flow3-for-the-sourceforge-community-choice-awards/"/>
		<id>tag:acqal.com,2009:article174</id>
		<updated>2009-05-19T20:42:21-04:00</updated>
		<published>2009-05-19T20:28:01-04:00</published>
		<author>
			<name>Karsten Dambekalns</name>
			<email>karsten@typo3.org</email>
		</author>
		<content type="html" xml:base="http://www.acqal.com/">
			<![CDATA[<p><img style="float: right;" alt="Nominate TYPO3 and FLOW3 for the SourceForge Community Choice Awards" title="Nominate TYPO3 and FLOW3 for the SourceForge Community Choice Awards" src="uploads/RTEmagicC_806610e274.png.png" height="137" width="151">Hi TYPO3 members!<br /> <br /> It's time for the annual SourceForge Community Choice awards and we need your help to get TYPO3 and FLOW3 nominated! The more nominations we receive, the better our chances of being a finalist.<br /> <br /> Click on the links and nominate</p><ul><li>&nbsp; <a href="http://tr.im/nominateTYPO3" title="http://tr.im/nominateTYPO3" target="_blank" >http://tr.im/nominateTYPO3</a> for &quot;Best Project&quot; and &quot;Best Project for the Enterprise&quot;</li><li> &nbsp;&nbsp;<a href="http://tr.im/nominateFLOW3" title="http://tr.im/nominateFLOW3" target="_blank" >http://tr.im/nominateFLOW3</a> for &quot;Best New Project&quot; and &quot;Most Likely to Change the Way You Do Everything&quot;</li></ul><p>If we win a nomination, then we can potentially go on to win the category award. Thanks in advance for your help! But hurry - nominations close on May 29th.</p>
<p>Regards,</p>
<p>Karsten<br /> -- <br /> Karsten Dambekalns<br /> TYPO3 Association - Steering Committee Member<br /> <a href="http://association.typo3.org/" title="http://association.typo3.org/" target="_blank" >http://association.typo3.org/</a><br />--<br />Acqal Corporation is an official TYPO3 agency built upon over 40 years of Internet-based software and usability experience.  Our TYPO3 offerings include <a href="http://www.acqal.com/cms-typo3-typo3-website-migration/" title="TYPO3 CMS Migration">website migration</a>, <a href="http://www.acqal.com/typo3-extension-support/" title="TYPO3 extension support">extension support</a>, <a href="http://www.acqal.com/typo3-templates-typo3-design/" title="TYPO3 templates">templates</a> and <a href="http://www.acqal.com/typo3-tutorial-typo3-video/" title="TYPO3 Tutorials">tutorials</a>.</p><p>Please subscribe to <a href="http://www.acqal.com/account/subscribe/">Acqal Newsletter</a> and Acqal Blogging via <a href="http://feedburner.google.com/fb/a/mailverify?uri=AcqalBlogging" target="_blank" class="Email" title="Subscribe to Acqal Blogging via Email">Email</a> or <a href="http://feeds.acqal.com/AcqalBlogging" target="_blank">RSS Feed <img alt="Acqal RSS Feed" title="Acqal RSS Feed" src="http://www.acqal.com/fileadmin/ext-templates/timtab_sociable/Aquaticus.Social/16x16/feed.png" height="16" width="16"></a>.<br /><br /><i>&copy; 2009 <a href="http://www.acqal.com/" target="_blank">Acqal Corporation</a>. All Rights Reserved.</i></p>]]>
		</content>
	</entry>
	
</feed>
