Listing 9-1. The application layout (app/views/layouts/application.rhtml)
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Pro DOM Scripting with Ajax, APIs and Libraries Chapter 9<%= stylesheet_link_tag 'main' %>
<%= javascript_include_tag 'prototype', 'lowpro', 'moofx', 'application' %>
<%= yield %>
CHAPTER 9 n A DYNAMIC HELP SYSTEM 207
Listing 9-2. The full page help layout (app/views/layouts/help.rhtml)
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Pro DOM Scripting with Ajax, APIs and Libraries Chapter 9<%= stylesheet_link_tag 'main' %>
<%= yield %>
Listing 9-3. The help sidebar layout (app/views/layouts/help_sidebar.rhtml)
X
<%= yield %>
Listing 9-4. The form page (app/views/main/index.rhtml)
Add A Sprocket ?
Listing 9-5.
Pages:
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292