Show
Ignore:
Timestamp:
03/02/10 06:11:11 (2 years ago)
Author:
cmoullet
Message:

Continue migrating to Debian

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/camptocamp/mapfish_workshop_fossgis2010/printing_src/_build/html/creating_application.html

    r3379 r3381  
    5656<h3>Generating the base<a class="headerlink" href="#generating-the-base" title="Permalink to this headline">¶</a></h3> 
    5757<p>To create a MapFish application use:</p> 
    58 <div class="highlight-python"><pre>&lt;env&gt; C:\MapFish&gt; paster create -t mapfish MapFishApp</pre> 
     58<div class="highlight-python"><pre>&lt;env&gt; paster create -t mapfish MapFishApp</pre> 
    5959</div> 
    6060<p><tt class="docutils literal"><span class="pre">MapFishApp</span></tt> is the name of the MapFish application you&#8217;re creating, you can 
     
    6969<p>Now is the time to check that your MapFish application works. For this go into 
    7070the <tt class="docutils literal"><span class="pre">MapFishApp</span></tt> folder and start the application:</p> 
    71 <div class="highlight-python"><pre>&lt;env&gt; C:\MapFish&gt;cd MapFishApp 
    72 &lt;env&gt; C:\MapFish\MapFishApp&gt;paster serve development.ini</pre> 
     71<div class="highlight-python"><pre>&lt;env&gt; $ cd MapFishApp 
     72&lt;env&gt; $ paster serve development.ini</pre> 
    7373</div> 
    7474<p>This command starts your application in the Paster web server, which is a 
     
    9191<p>Enter <tt class="docutils literal"><span class="pre">Ctrl+C</span></tt> to stop the Paster server and proceed with these 
    9292commands:</p> 
    93 <div class="highlight-python"><pre>&lt;env&gt; C:\MapFish\MapFishApp&gt;cd .. 
    94 &lt;env&gt; C:\MapFish&gt; paster create -t mapfish_client MapFishApp</pre> 
     93<div class="highlight-python"><pre>&lt;env&gt; cd .. 
     94&lt;env&gt; paster create -t mapfish_client MapFishApp</pre> 
    9595</div> 
    9696<p>When asked whether to overwrite <tt class="docutils literal"><span class="pre">index.html</span></tt> answer <tt class="docutils literal"><span class="pre">y</span></tt>. This will 
     
    9898provided by the <tt class="docutils literal"><span class="pre">mapfish_client</span></tt> template.</p> 
    9999<p>Start the application again:</p> 
    100 <div class="highlight-python"><pre>&lt;env&gt; C:\MapFish&gt;cd MapFishApp 
    101 &lt;env&gt; C:\MapFish\MapFishApp&gt;paster serve --reload development.ini</pre> 
     100<div class="highlight-python"><pre>&lt;env&gt; cd MapFishApp 
     101&lt;env&gt; paster serve --reload development.ini</pre> 
    102102</div> 
    103103<div class="admonition note">