Skip to content

Commit

Permalink
Updating docs & errata
Browse files Browse the repository at this point in the history
Signed-off-by: Pete LePage <Pete.LePage@pobox.com>
  • Loading branch information
petele committed Apr 9, 2012
1 parent 2d7bdb9 commit c0f23bc
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Docs/Instructions.md
@@ -1,6 +1,11 @@
WReader Code Lab
================


<div class="alert alert-info">
<strong>Attention!</strong> Be sure to check the <a href="errata.html">errata documention</a> for important updates and a list of currently broken features.
</div>

Introduction
------------
This codelab covers the techniques and design fundamentals required to create modern, 'lick-able' web applications. The exercises look at the fundamentals of building web applications:
Expand Down
2 changes: 2 additions & 0 deletions Docs/doc_top.shtml
Expand Up @@ -67,6 +67,8 @@
<li><a href="#">Exercise 10</a></li>
<li><a href="#">Exercise 11</a></li>
<li><a href="#">Exercise 12</a></li>
<li class="nav-header">Updates &amp; Errata</li>
<li><a href="errata.html">Errata</a></li>
<li class="nav-header">Library Documentation</li>
<li><a href="http://html5boilerplate.com/">HTML5 Boiler Plate</a></li>
<li><a href="http://emberjs.com/">Ember.js</a></li>
Expand Down
15 changes: 14 additions & 1 deletion Docs/errata.md
@@ -1,4 +1,17 @@
WReader Code Lab Errata & Updates
=================================

Nothing yet... :D
This code lab is a work in progress, and there are a number of errors or items that need to be updated. For the most up to date documentation and source code, be sure to check [https://github.com/petele/WebApp-CodeLab](https://github.com/petele/WebApp-CodeLab).

Exercise 1
----------
Exercise 1 is a little weak right now and needs to be updated to include more of an EmberJS introduction.

LawnChair IndexedDB Adapter
---------------------------
The [LawnChair IndexedDB Adapter](finalproject/js/libs/lawnchair-adapter-indexed-db-0.6.1.js) is currently hard coded to use the WebKit prefixes, which will fail for any non-webkit browser. There are two solutions I'm currently investigating, updating the IndexedDB adapter, or replacing LawnChair with the [IDBWrapper](https://github.com/jensarps/IDBWrapper).


Vendor Prefixed CSS Styles
--------------------------
Almost all of the CSS is `-webkit` prefixed, and does not include prefixes for other browsers, this is a *bad* practice and needs to be fixed. Beyond updating the documentation, a quick fix is to run the code through [Prefixr](http://prefixr.com/).
16 changes: 15 additions & 1 deletion errata.html
Expand Up @@ -67,6 +67,8 @@
<li><a href="#">Exercise 10</a></li>
<li><a href="#">Exercise 11</a></li>
<li><a href="#">Exercise 12</a></li>
<li class="nav-header">Updates &amp; Errata</li>
<li><a href="errata.html">Errata</a></li>
<li class="nav-header">Library Documentation</li>
<li><a href="http://html5boilerplate.com/">HTML5 Boiler Plate</a></li>
<li><a href="http://emberjs.com/">Ember.js</a></li>
Expand All @@ -80,7 +82,19 @@

<h1>WReader Code Lab Errata &amp; Updates</h1>

<p>Nothing yet... :D</p>
<p>This code lab is a work in progress, and there are a number of errors or items that need to be updated. For the most up to date documentation and source code, be sure to check <a href="https://github.com/petele/WebApp-CodeLab">https://github.com/petele/WebApp-CodeLab</a>.</p>

<h2>Exercise 1</h2>

<p>Exercise 1 is a little weak right now and needs to be updated to include more of an EmberJS introduction.</p>

<h2>LawnChair IndexedDB Adapter</h2>

<p>The <a href="finalproject/js/libs/lawnchair-adapter-indexed-db-0.6.1.js">LawnChair IndexedDB Adapter</a> is currently hard coded to use the WebKit prefixes, which will fail for any non-webkit browser. There are two solutions I'm currently investigating, updating the IndexedDB adapter, or replacing LawnChair with the <a href="https://github.com/jensarps/IDBWrapper">IDBWrapper</a>.</p>

<h2>Vendor Prefixed CSS Styles</h2>

<p>Almost all of the CSS is <code>-webkit</code> prefixed, and does not include prefixes for other browsers, this is a <em>bad</em> practice and needs to be fixed. Beyond updating the documentation, a quick fix is to run the code through <a href="http://prefixr.com/">Prefixr</a>.</p>
</div><!--/span-->
</div><!--/row-->

Expand Down
6 changes: 6 additions & 0 deletions index.html
Expand Up @@ -67,6 +67,8 @@
<li><a href="#">Exercise 10</a></li>
<li><a href="#">Exercise 11</a></li>
<li><a href="#">Exercise 12</a></li>
<li class="nav-header">Updates &amp; Errata</li>
<li><a href="errata.html">Errata</a></li>
<li class="nav-header">Library Documentation</li>
<li><a href="http://html5boilerplate.com/">HTML5 Boiler Plate</a></li>
<li><a href="http://emberjs.com/">Ember.js</a></li>
Expand All @@ -80,6 +82,10 @@

<h1>WReader Code Lab</h1>

<div class="alert alert-info">
<strong>Attention!</strong> Be sure to check the <a href="errata.html">errata documention</a> for important updates and a list of currently broken features.
</div>

<h2>Introduction</h2>

<p>This codelab covers the techniques and design fundamentals required to create modern, 'lick-able' web applications. The exercises look at the fundamentals of building web applications:</p>
Expand Down

0 comments on commit c0f23bc

Please sign in to comment.