<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>pipwerks</title>
	
	<link>http://pipwerks.com</link>
	<description>E-Learning and Web Development</description>
	<lastBuildDate>Sat, 13 Mar 2010 07:24:51 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/pipwerks" /><feedburner:info uri="pipwerks" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>pipwerks</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>CustomInput Class: Accessible, Custom-Styled Checkboxes and Radio Buttons</title>
		<link>http://feedproxy.google.com/~r/pipwerks/~3/nkQaMvTgg1A/</link>
		<comments>http://pipwerks.com/2010/03/11/custominput/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 07:51:51 +0000</pubDate>
		<dc:creator>philip</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[interface design]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://pipwerks.com/?p=885</guid>
		<description><![CDATA[I'm currently working on a new quiz system at work, and decided I'd incorporate Filament's wonderful stylized checkboxes and radio buttons into my project, which meant it was time to roll up my sleeves and code me some Moo.<p><a href="http://pipwerks.com/2010/03/11/custominput/">CustomInput Class: Accessible, Custom-Styled Checkboxes and Radio Buttons</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of the Filament Group&#8217;s UI work.  They put a lot of thought into their work, and ensure everything they make is not only beautiful, but as accessible and as semantic as possible.</p>
<p>One of my favorite pieces of work by the Filament Group is their approach to stylized checkbox and radio &lt;input&gt; elements, as described in their post <a href="http://www.filamentgroup.com/lab/accessible_custom_designed_checkbox_radio_button_inputs_styled_css_jquery/">Accessible, Custom Designed Checkbox and Radio Button Inputs Styled  with CSS (and a dash of jQuery)</a></p>
<p>The system is remarkably well-constructed, degrades gracefully, and is completely accessible if JavaScript, image loading, or CSS is disabled can&#8217;t be loaded. No small feat. Plus it remains semantically sound, with no bloated markup.</p>
<p>Having said all that, I&#8217;ve never actually used any of Filment Group&#8217;s UI code in my projects because of one little obstacle: they rely on jQuery.  Mind you, I&#8217;m not a jQuery hater, but I prefer MooTools and build all my major projects using MooTools. Switching to jQuery for such a small UI customization is not going to happen. I&#8217;ve often thought it would be great to build a MooTools version of Filament&#8217;s UI examples, but never had the time&#8230; until today.</p>
<p>I&#8217;m currently working on a new quiz system at work, and decided I&#8217;d incorporate Filament&#8217;s wonderful stylized checkboxes and radio buttons into my project, which meant it was time to roll up my sleeves and code me some Moo. </p>
<p><strong><a href="http://lab.pipwerks.com/CustomInput/">View Demo</a></strong></p>
<p>I made a couple of changes to the underlying JavaScript to suit a MooTools approach (and add some flexibility with the CSS selectors) but the basic premise is the same as <a href="http://www.filamentgroup.com/examples/customInput/">Filament&#8217;s demo</a>. </p>
<p>The following JavaScript will style ALL checkbox and radio inputs on your page. Note that CustomInput returns the collection of elements that have been styled.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript">window.<span style="color: #63C;">addEvent</span><span style="color: #666;">&#40;</span><span style="color: #F06;">&quot;domready&quot;</span><span style="color: #333;">,</span> <span style="color: #33F;">function</span><span style="color: #666;">&#40;</span><span style="color: #666;">&#41;</span><span style="color: #666;">&#123;</span> 
    <span style="color: #33F;">var</span> all_styled_inputs <span style="color: #333;">=</span> <span style="color: #33F;">new</span> CustomInput<span style="color: #666;">&#40;</span><span style="color: #666;">&#41;</span><span style="color: #333;">;</span>
<span style="color: #666;">&#125;</span><span style="color: #666;">&#41;</span><span style="color: #333;">;</span></pre></div></div>

<p>If you want to target specific parts of the page or only certain input types, pass a CSS selector as an argument:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript">window.<span style="color: #63C;">addEvent</span><span style="color: #666;">&#40;</span><span style="color: #F06;">&quot;domready&quot;</span><span style="color: #333;">,</span> <span style="color: #33F;">function</span><span style="color: #666;">&#40;</span><span style="color: #666;">&#41;</span><span style="color: #666;">&#123;</span>
    <span style="color: #CCC;">//Only style checkboxes</span>
    <span style="color: #33F;">var</span> styled_checkboxes <span style="color: #333;">=</span> <span style="color: #33F;">new</span> CustomInput<span style="color: #666;">&#40;</span><span style="color: #F06;">&quot;input[type='checkbox']&quot;</span><span style="color: #666;">&#41;</span><span style="color: #333;">;</span>
&nbsp;
    <span style="color: #CCC;">//Only style radios in a div named &quot;walkman&quot;</span>
    <span style="color: #33F;">var</span> styled_radios <span style="color: #333;">=</span> <span style="color: #33F;">new</span> CustomInput<span style="color: #666;">&#40;</span><span style="color: #F06;">&quot;#walkman input[type='radio']&quot;</span><span style="color: #666;">&#41;</span><span style="color: #333;">;</span>
<span style="color: #666;">&#125;</span><span style="color: #666;">&#41;</span><span style="color: #333;">;</span></pre></div></div>

<p>The CustomInput class has been fully JSLinted, and remains very close to the original jQuery version&#8217;s size. When compressed (YUI), it squeezes down to about 1.6kb. It uses &#8216;dollar-safe&#8217; mode for compatibility with other JS libraries.</p>
<p>It has been successfully tested in the following systems:</p>
<p>Windows XP</p>
<ul>
<li>Internet Explorer 6</li>
<li>Firefox 3.5</li>
<li>Safari 4</li>
<li>Chrome 4</li>
<li>Opera 10</li>
</ul>
<p>Mac OS X (10.6.2)</p>
<ul>
<li>Firefox 3.6</li>
<li>Safari 4</li>
<li>Opera 10.1</li>
<li>Chrome 5 (beta)</li>
</ul>
<p><strong><a href="http://lab.pipwerks.com/CustomInput/">View Demo</a> | <a href="http://pwrk.us/custominput">Download Project Files</a></strong></p>
<p>Major kudos to Filament Group for sharing their ideas with the world.</p>
<p><strong>Update 3/12/2010</strong>: Fixed a typo in the JS file preventing the checkedHover class from being assigned.</p>
<p><a href="http://pipwerks.com/2010/03/11/custominput/">CustomInput Class: Accessible, Custom-Styled Checkboxes and Radio Buttons</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>


<p>Related posts:<ol><li><a href='http://pipwerks.com/2009/02/24/custom-modal-windows-using-canvas-and-mootools/' rel='bookmark' title='Permanent Link: Custom modal windows using canvas and MooTools'>Custom modal windows using canvas and MooTools</a></li>
<li><a href='http://pipwerks.com/2009/02/18/fun-with-canvas-and-mootools-a-rectangle-class/' rel='bookmark' title='Permanent Link: Fun with canvas and MooTools: a Rectangle class'>Fun with canvas and MooTools: a Rectangle class</a></li>
<li><a href='http://pipwerks.com/2009/02/01/obfuscating-email-addresses-revisited/' rel='bookmark' title='Permanent Link: Obfuscating email addresses, revisited'>Obfuscating email addresses, revisited</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/pipwerks/~4/nkQaMvTgg1A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pipwerks.com/2010/03/11/custominput/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://pipwerks.com/2010/03/11/custominput/</feedburner:origLink></item>
		<item>
		<title>Viewing PDFs in a Browser on a Mac</title>
		<link>http://feedproxy.google.com/~r/pipwerks/~3/DMKAxuqzsw8/</link>
		<comments>http://pipwerks.com/2010/02/20/viewing-pdfs-in-a-browser-on-a-mac/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 01:29:40 +0000</pubDate>
		<dc:creator>philip</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Adobe Reader]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[pdfobject]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://pipwerks.com/?p=878</guid>
		<description><![CDATA[As a Mac user, one of the more annoying issues I frequently encounter is funky PDF handling in Firefox and Safari. Here are some things you can do to get PDFs working in your browser(s).<p><a href="http://pipwerks.com/2010/02/20/viewing-pdfs-in-a-browser-on-a-mac/">Viewing PDFs in a Browser on a Mac</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>As a Mac user, one of the more annoying issues I frequently encounter is funky PDF handling in Firefox and Safari. For instance:</p>
<ul>
<li>Adobe doesn&#8217;t make a version of Adobe Reader that&#8217;s compatible with Firefox on Mac OS X</li>
<li>Adobe Reader is only supported in 32-bit versions of Safari on OS X (Snow Leopard ships with a 64-bit version of Safari)</li>
<li>Safari has built-in handling of PDFs, but if Adobe Reader is installed &#8212; whether it&#8217;s actually working in Safari or not &#8212; it will turn off Safari&#8217;s native PDF handling by default.</li>
</ul>
<p>Here are some things you can do to get PDFs to display in your browser(s).</p>
<h2>Restore Safari&#8217;s built-in PDF handling</h2>
<p>If your Safari browser isn&#8217;t using OS X&#8217;s native PDF handling, Adobe Reader may be overriding it. Here&#8217;s how to fix it:</p>
<ol>
<li>Launch Adobe Reader</li>
<li>Go to Preferences &gt; Internet</li>
<li>Deselect &#8220;Display PDF in browser using&#8230;&#8221;</li>
<li>Click OK</li>
</ol>
<h2>Enable PDF support in Firefox</h2>
<p>Mozilla has a <a href="http://support.mozilla.com/en-US/kb/Opening+PDF+files+within+Firefox">handy reference</a> for this topic.  Here&#8217;s what they say:</p>
<blockquote><p>Adobe does not yet maintain a plugin for viewing PDF files within  Firefox for computers with Mac OS X. To view PDFs in Firefox:</p>
<ul>
<li> If you have a Mac with a PowerPC processor, the <a href="http://www.schubert-it.com/pluginpdf/">Schubert|it PDF Browser  Plugin</a> can be used to view PDF files in Firefox.</li>
<li> If you have a Mac with an Intel processor, the <a href="https://addons.mozilla.org/firefox/addon/7518">Firefox PDF Plugin  extension</a> can be used to view PDF files in Firefox.</li>
</ul>
</blockquote>
<p>I&#8217;ve installed the Firefox PDF Plugin on my Mac (Firefox 3.6), and it works great. It uses the Mac&#8217;s built-in PDF handling, so it&#8217;s a very small plugin runs very quick.</p>
<h2>Caveats and an editorial</h2>
<p>Using the Mac&#8217;s built-in PDF support means you won&#8217;t be able to take advantage of some of Adobe Reader&#8217;s new features, such as scripting, portfolios, and SWF support.</p>
<p>I don&#8217;t know about you, but I prefer to use the PDF format for its traditional purpose: reading print-based documents online.  Plus, Adobe Reader currently requires <a href="http://twitpic.com/14ezpn">290MB of space</a> on the hard drive. I can live without the new features and would prefer to use my 290MB of space for other things.</p>
<p>In general, I recommend avoiding Adobe Reader on a Mac because of its poor support  in Firefox and Safari, its incredible bloat, and the  seemingly daily announcements of major security vulnerabilities. Most of the security issues have been directly related to the scripting functionality and other new features. If a lite version of Adobe Reader were offered &#8212; one that removes the bloat, eschews these new features, and simply lets us view standard PDF documents &#8212; I&#8217;d be more than happy to use it.</p>
<h2>Shameless plug</h2>
<p>Need to embed a PDF in an HTML page? Try <a href="http://pdfobject.com">PDFObject</a>. It&#8217;s free, tiny, and works much like SWFObject (the two projects are unrelated).</p>
<p><a href="http://pipwerks.com/2010/02/20/viewing-pdfs-in-a-browser-on-a-mac/">Viewing PDFs in a Browser on a Mac</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>


<p>Related posts:<ol><li><a href='http://pipwerks.com/2008/10/01/introducing-pdfobject/' rel='bookmark' title='Permanent Link: Introducing PDFObject'>Introducing PDFObject</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/pipwerks/~4/DMKAxuqzsw8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pipwerks.com/2010/02/20/viewing-pdfs-in-a-browser-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://pipwerks.com/2010/02/20/viewing-pdfs-in-a-browser-on-a-mac/</feedburner:origLink></item>
		<item>
		<title>Speaking of IMS…</title>
		<link>http://feedproxy.google.com/~r/pipwerks/~3/8BVHexpI4tc/</link>
		<comments>http://pipwerks.com/2010/02/16/speaking-of-ims/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:26:27 +0000</pubDate>
		<dc:creator>philip</dc:creator>
				<category><![CDATA[e-learning]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[impenetrable fortress]]></category>
		<category><![CDATA[IMS]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://pipwerks.com/?p=867</guid>
		<description><![CDATA[The IMS wants your personal information before they'll let you read their public standards.<p><a href="http://pipwerks.com/2010/02/16/speaking-of-ims/">Speaking of IMS&#8230;</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>IMS produces standards they want everyone to use.</p>
<p>Why, then, do I have to log in to their site in order to VIEW the documentation for their standards?</p>
<p>Situation: I found a link to a PDF on their site. When I clicked it, I was presented with <a href="http://www.imsglobal.org/tryagain.cfm?info=DENIED">this warm greeting</a>:</p>
<div id="mainContent">
<blockquote><p><strong>Sorry</strong><br />
The page you are trying to access is reserved for participants in the IMS GLC Public Community or is reserved for IMS GLC Members, Affiliates or Alliance Members.</p>
<p>If you have already set up an account and just need to login, please do so <a href="http://www.imsglobal.org/register/login.cfm">here</a>. If you would like to register for a free public community account, just head on over to our <a href="http://www.imsglobal.org/register/register.cfm">registration page.</a></p></blockquote>
<p>So&#8230; in order for me to even <em>read </em>their standards, I have to tell them who I am and put my personal information in their database? How does this foster adoption of standards?</p>
<p>Geez these guys burn my britches&#8230;</p>
<p><strong>UPDATE:</strong></p>
<p>The IMS site requires the following information before you can view any of their documentation: Name, email, organization name, job title, job description, country</p>
<p>Pretty invasive if you ask me.</p>
<p><strong>UPDATE #2:</strong></p>
<p>After registering for site access, I was greeted with a second page asking for persona information, and asking me to agree to IMS&#8217;s licensing terms. They require the following information: Name, email, &#8220;entity on whose behalf you are accepting this agreement&#8221;, street address (includes city, zip, country), phone number</p>
<p>(Phone number? Seriously?)</p>
<p>The license terms are FIVE PAGES long after pasting into a Word file.</p>
<p>Interesting bits (emphasis mine):</p>
<blockquote><p>IMS specifications are published solely for the purpose of enabling interoperability among learning products and services used by the <strong>education and training communities served by IMS members </strong>and are <strong>made available under license to Registered Users solely to further that purpose</strong>.</p></blockquote>
<p>I guess this means the standards aren&#8217;t meant for public consumption after all, though the end result of the standards are?</p>
<blockquote><p>Users of the Specification(s) are encouraged to engage directly with IMS as IMS members, including <strong>registration of all applications of specifications</strong>, in order to enhance the level of interoperability in the education and training industries worldwide.</p></blockquote>
<p>I read this as: tell us who you are and how you&#8217;re using IMS specifications so we can include you in our next press release (you know, the part where we <a href="http://pipwerks.com/2010/02/16/ims/">pat ourselves on the back</a>).</p>
<blockquote><p>Any use of the Specifications(s) or other Materials provided by IMS must be accompanied by the copyright legends provided with full attribution given to IMS.</p></blockquote>
<p>If this were the case with the HTML, ECMAScript, or XML standards, our documents would be bloated with useless attribution credits. (Side note: I wonder how this affects SCORM, as SCORM uses IMS specifications for packaging? Is anyone who produces a SCORM-based course supposed to <del>pay respect to the Don</del> provide attribution to IMS in their courseware?)</p>
<blockquote><p>Licensee agrees to publicly and visibly acknowledge and attribute to IMS the Specification(s) upon which products are based to any and all Development Partner(s).</p></blockquote>
<p>So if Company X uses an IMS specification, they&#8217;re supposed to go over to each &#8220;Development Partner&#8221; &#8212; many of whom may be commercial competitors &#8212; and let them know?</p>
</div>
<p><a href="http://pipwerks.com/2010/02/16/speaking-of-ims/">Speaking of IMS&#8230;</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>


<p>Related posts:<ol><li><a href='http://pipwerks.com/2010/02/16/ims/' rel='bookmark' title='Permanent Link: IMS issues press release for new e-learning interoperability standards'>IMS issues press release for new e-learning interoperability standards</a></li>
<li><a href='http://pipwerks.com/2009/03/22/cheating-in-scorm/' rel='bookmark' title='Permanent Link: Cheating in SCORM'>Cheating in SCORM</a></li>
<li><a href='http://pipwerks.com/2008/12/17/scorm-resources/' rel='bookmark' title='Permanent Link: SCORM resources'>SCORM resources</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/pipwerks/~4/8BVHexpI4tc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pipwerks.com/2010/02/16/speaking-of-ims/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://pipwerks.com/2010/02/16/speaking-of-ims/</feedburner:origLink></item>
		<item>
		<title>IMS issues press release for new e-learning interoperability standards</title>
		<link>http://feedproxy.google.com/~r/pipwerks/~3/zRFSVaFVPXo/</link>
		<comments>http://pipwerks.com/2010/02/16/ims/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 18:20:33 +0000</pubDate>
		<dc:creator>philip</dc:creator>
				<category><![CDATA[e-learning]]></category>
		<category><![CDATA[grandstanding]]></category>
		<category><![CDATA[IMS]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://pipwerks.com/?p=863</guid>
		<description><![CDATA[If the new standards are written as poorly as this press release, it's going to be 1,000 pages of useless spec.<p><a href="http://pipwerks.com/2010/02/16/ims/">IMS issues press release for new e-learning interoperability standards</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>News from the IMS Global Learning Consortium:</p>
<blockquote><p>The IMS Global Learning Consortium (IMS GLC) today announced the public review of the first phase of the Learning Tools Interoperability (LTI) standards to allow open and seamless integration of educational web applications. Called “Basic LTI or BLTI,” this first standard addresses the most common roadblocks to achieving a seamless experience for teachers and students.</p></blockquote>
<p>Reading this <a href="http://imsglobal.org/pressreleases/pr100216.html">press release</a>, I couldn&#8217;t help but notice two things:</p>
<ol>
<li>There&#8217;s an awful lot of chest-puffing and self-congratulation going on here &#8212; people&#8217;s credentials are thrown around an awful lot, and over half of the press release is filled &#8220;Statements of Support.&#8221;</li>
<li>There&#8217;s no hyperlink to the standards that are being announced, nor is there any information about how you can read the new standard proposal, whether you can try it yourself, how long it&#8217;s open for review, etc.</li>
</ol>
<p>If the new standards are written as poorly as this press release, it&#8217;s going to be 1,000 pages of useless spec. All filler, no killer.</p>
<p><a href="http://pipwerks.com/2010/02/16/ims/">IMS issues press release for new e-learning interoperability standards</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>


<p>Related posts:<ol><li><a href='http://pipwerks.com/2010/02/16/speaking-of-ims/' rel='bookmark' title='Permanent Link: Speaking of IMS&#8230;'>Speaking of IMS&#8230;</a></li>
<li><a href='http://pipwerks.com/2008/07/25/ims-announces-new-qti-validation-service/' rel='bookmark' title='Permanent Link: IMS announces new QTI validation service'>IMS announces new QTI validation service</a></li>
<li><a href='http://pipwerks.com/2008/03/03/good-news-from-the-ims-global-learning-consortium/' rel='bookmark' title='Permanent Link: Good news from the IMS Global Learning Consortium?'>Good news from the IMS Global Learning Consortium?</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/pipwerks/~4/zRFSVaFVPXo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pipwerks.com/2010/02/16/ims/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://pipwerks.com/2010/02/16/ims/</feedburner:origLink></item>
		<item>
		<title>Introducing LearnSWFObject.com</title>
		<link>http://feedproxy.google.com/~r/pipwerks/~3/swfkFWepOPM/</link>
		<comments>http://pipwerks.com/2010/02/15/introducing-learnswfobject-com/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 09:55:50 +0000</pubDate>
		<dc:creator>philip</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[learnswfobject.com]]></category>
		<category><![CDATA[SWFObject]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://pipwerks.com/?p=852</guid>
		<description><![CDATA[I'm happy to introduce you to my latest project, <a href="http://learnswfobject.com">LearnSWFObject.com</a><p><a href="http://pipwerks.com/2010/02/15/introducing-learnswfobject-com/">Introducing LearnSWFObject.com</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to introduce you to my latest project, <a href="http://learnswfobject.com">LearnSWFObject.com</a></p>
<p>It&#8217;s been many, many months in the making, and has rudely been put aside a number of times when my life left me no free time to work on it. Happily, I&#8217;ve been able to push through the last remaining barriers and get the site out the door.  Hopefully someone will find it useful.</p>
<p>I&#8217;ve ported my most popular SWFObject tutorials and examples to the new site &#8212; updated, of course &#8212; and have added a few new tutorials, too. As part of the housecleaning effort, I&#8217;ve removed all SWFObject examples and tutorials from <a href="http://pipwerks.com">pipwerks.com</a>. 301 redirects will re-route the most popular posts to their <a href="http://learnswfobject.com">LearnSWFObject.com</a> equivalent, but the odds and ends have been sent to the compost heap.</p>
<p>I&#8217;m most excited about the brand-new <a href="http://learnswfobject.com/generator/">code generator</a> (written from scratch) that will write your SWFObject embed code for you. Some notes about the generator:</p>
<ul>
<li> It can write HTML 5, HTML 4 (transitional/strict), and XHTML 1 (transitional/strict) doctypes</li>
<li> It provides code for both types of SWFObject embeds: <a href="http://learnswfobject.com/the-basics/dynamic-publishing/">dynamic</a> (JavaScript) and <a href="http://learnswfobject.com/the-basics/static-publishing/">static</a> (markup)</li>
<li>It includes a download link that lets you save your generated markup in  an HTML file</li>
<li>The static publishing option includes an option for a nice, shorter syntax</li>
<li> The generator uses progressive enhancement techniques, meaning it&#8217;s nicer with JavaScript enabled but fully functional without it</li>
</ul>
<p><a href="http://learnswfobject.com/generator/">Give it a try</a>!</p>
<p><a href="http://learnswfobject.com">LearnSWFObject.com</a> will remain a work in progress, as SWFObject itself continues to evolve and people find news ways to <del>break</del> use it in their sites. I will continue to play with the formatting and layout from time to time.</p>
<p>In other SWFObject news, I think I&#8217;m allowed to report that SWFObject 2.3 is in the works, and will contain mostly bug fixes and an enhancement or two. Bug reports and feature requests are always welcome at <a href="http://code.google.com/p/swfobject/issues/list">SWFObject&#8217;s Google Code site</a>.  If you have questions about how to use SWFObject that aren&#8217;t answered by the <a href="http://learnswfobject.com">LearnSWFObject.com</a> tutorials, please post them on the <a href="http://groups.google.com/group/swfobject">SWFObject Google Group</a>.</p>
<p><a href="http://pipwerks.com/2010/02/15/introducing-learnswfobject-com/">Introducing LearnSWFObject.com</a> is a post from: <a href="http://pipwerks.com">pipwerks.com</a>. Unless specified otherwise, all code is licensed under an <a rel="license" href="http://www.opensource.org/licenses/mit-license.php">MIT-style</a> license. All other content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>


<p>Related posts:<ol><li><a href='http://pipwerks.com/2009/02/09/swfobject-and-google-analytics/' rel='bookmark' title='Permanent Link: SWFObject and Google Analytics'>SWFObject and Google Analytics</a></li>
<li><a href='http://pipwerks.com/2008/11/11/swfobjectjs-finds-a-home-on-google-servers/' rel='bookmark' title='Permanent Link: SWFObject.js finds a home on Google servers'>SWFObject.js finds a home on Google servers</a></li>
<li><a href='http://pipwerks.com/2008/10/01/introducing-pdfobject/' rel='bookmark' title='Permanent Link: Introducing PDFObject'>Introducing PDFObject</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/pipwerks/~4/swfkFWepOPM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pipwerks.com/2010/02/15/introducing-learnswfobject-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://pipwerks.com/2010/02/15/introducing-learnswfobject-com/</feedburner:origLink></item>
	</channel>
</rss>
