Changeset 2956

Show
Ignore:
Timestamp:
09/28/08 19:54:32 (8 weeks ago)
Author:
mikeseth
Message:

significant improvement of layers explanations, broke down to subchapters to separate theory from practice

Location:
documentation/trunk
Files:
4 added
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • documentation/trunk/topics/examples.xml

    r2951 r2956  
    292292</configuration> 
    293293</codeblock> 
    294    </body> 
     294<codeblock id="layouts-full-html-example"> 
     295&lt;html&gt; 
     296&lt;head&gt; 
     297&lt;title&gt;My website&lt;/title&gt; 
     298&lt;/head&gt; 
     299&lt;body&gt; 
     300&lt;div class=&quot;navigation&quot;&gt; 
     301&lt;!--- navigation stuff here --&gt; 
     302&lt;/div&gt; 
     303&lt;div class=&quot;content&quot;&gt; 
     304  &lt;h1&gt;My content page&lt;/h1&gt; 
     305  &lt;p&gt;Blah blah&lt;/p&gt; 
     306&lt;/div&gt; 
     307&lt;/body&gt; 
     308</codeblock> 
     309<codeblock id="layouts-classic-html-header"> 
     310&lt;html&gt; 
     311&lt;head&gt; 
     312&lt;title&gt;My website&lt;/title&gt; 
     313&lt;/head&gt; 
     314&lt;body&gt; 
     315&lt;div class=&quot;navigation&quot;&gt; 
     316&lt;!--- navigation stuff here --&gt; 
     317&lt;/div&gt; 
     318&lt;div class=&quot;content&quot;&gt; 
     319</codeblock> 
     320<codeblock id="layouts-classic-html-page"> 
     321&lt;?php require_once 'header.inc.php'; ?&gt; 
     322&lt;h1&gt;My content page&lt;/h1&gt; 
     323&lt;p&gt;Blah blah&lt;/p&gt; 
     324&lt;?php require_once 'footer.inc.php'; ?&gt; 
     325</codeblock> 
     326<codeblock id="layouts-classic-html-footer"> 
     327&lt;/div&gt; 
     328&lt;/body&gt; 
     329</codeblock> 
     330<codeblock id="layouts-agavi-html-decorator"> 
     331&lt;html&gt; 
     332&lt;head&gt; 
     333&lt;title&gt;My website&lt;/title&gt; 
     334&lt;body&gt; 
     335&lt;div class=&quot;navigation&quot;&gt; 
     336&lt;!--- navigation stuff here --&gt; 
     337&lt;/div&gt; 
     338&lt;div class=&quot;content&quot;&gt; 
     339&lt;?php print $inner; ?&gt; 
     340&lt;/div&gt; 
     341&lt;/body&gt; 
     342</codeblock> 
     343<codeblock id="layouts-agavi-html-view-template"> 
     344&lt;h1&gt;My content page&lt;/h1&gt; 
     345&lt;p&gt;Blah blah&lt;/p&gt;</codeblock> 
     346</body> 
    295347</topic> 
  • documentation/trunk/tutorial.ditamap

    r2744 r2956  
    4646 
    4747  <chapter href="topics/advanced-facilities.dita" collection-type="sequence">  
    48     <topicref href="topics/basic-layouts.dita"/> 
    49 <!--    <topicref href="topics/creating-decorator.dita"/> --> 
     48    <topicref href="topics/bloggie-stage3-skinning.dita" collection-type="sequence"> 
     49      <topicref href="topics/layers.dita"/> 
     50      <topicref href="topics/output-types.dita"/> 
     51      <topicref href="topics/bloggie-stage3-layout-configuration-public.dita"/> 
     52    </topicref> 
     53<!--    <topicref href="topics/basic-layouts.dita"> 
     54    </topicref> --> 
    5055    <topicref href="topics/basic-forms.dita"/>  
    5156    <topicref href="topics/basics-authentication-security.dita"/>