Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 2e7d6afabca505179b7720e5a054dd0f > files > 441

python2-paste-3.0.8-1.mga7.noarch.rpm


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Features &#8212; Paste 3.0.0 documentation</title>
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <script type="text/javascript" src="_static/language_data.js"></script>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="next" title="Python Paste Developer Guide" href="DeveloperGuidelines.html" />
    <link rel="prev" title="The Paste HTTP Server Thread Pool" href="paste-httpserver-threadpool.html" />
   
  <link rel="stylesheet" href="_static/custom.css" type="text/css" />
  
  <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />

  </head><body>
  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="features">
<h1>Features<a class="headerlink" href="#features" title="Permalink to this headline">¶</a></h1>
<div class="section" id="testing">
<h2>Testing<a class="headerlink" href="#testing" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>A fixture for testing WSGI applications conveniently and in-process,
in <code class="xref py py-class docutils literal notranslate"><span class="pre">paste.fixture.TestApp</span></code></li>
<li>A fixture for testing command-line applications, also in
<code class="xref py py-class docutils literal notranslate"><span class="pre">paste.fixture.TestFileEnvironment</span></code></li>
<li>Check components for WSGI-compliance in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.lint</span></code></li>
<li>Check filesystem changes, with <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.debug.fsdiff</span></code></li>
</ul>
</div>
<div class="section" id="server">
<h2>Server<a class="headerlink" href="#server" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>A threaded HTTP server in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.httpserver</span></code></li>
<li>A tool for seeing and killing errant threads in the HTTP server, in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.debug.watchthreads</span></code></li>
</ul>
</div>
<div class="section" id="dispatching">
<h2>Dispatching<a class="headerlink" href="#dispatching" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Chain and cascade WSGI applications (returning the first non-error
response) in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.cascade</span></code></li>
<li>Dispatch to several WSGI applications based on URL prefixes, in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.urlmap</span></code></li>
<li>Allow applications to make subrequests and forward requests
internally, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.recursive</span></code></li>
<li>Redirect error pages (e.g., 404 Not Found) to custom error pages, in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.errordocument</span></code>.</li>
</ul>
</div>
<div class="section" id="web-application">
<h2>Web Application<a class="headerlink" href="#web-application" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Easily deal with incoming requests and sending a response in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.wsgiwrappers</span></code></li>
<li>Work directly with the WSGI environment in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.request</span></code></li>
<li>Run CGI programs as WSGI applications in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.cgiapp</span></code></li>
<li>Traverse files and load WSGI applications from <code class="docutils literal notranslate"><span class="pre">.py</span></code> files (or
static files), in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.urlparser</span></code></li>
<li>Serve static directories of files, also in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.urlparser</span></code>; also
serve using the Setuptools <code class="docutils literal notranslate"><span class="pre">pkg_resources</span></code> resource API.</li>
<li>Proxy to other servers, treating external HTTP servers as WSGI
applications, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.proxy</span></code>.</li>
<li>Serve files (with support for <code class="docutils literal notranslate"><span class="pre">If-Modified-Since</span></code>, etc) in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.fileapp</span></code></li>
</ul>
</div>
<div class="section" id="tools">
<h2>Tools<a class="headerlink" href="#tools" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Catch HTTP-related exceptions (e.g., <code class="docutils literal notranslate"><span class="pre">HTTPNotFound</span></code>) and turn them
into proper responses in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.httpexceptions</span></code></li>
<li>Manage HTTP header fields with <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.httpheaders</span></code></li>
<li>Handle authentication/identification of requests in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth</span></code></li>
<li>Create sessions in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.session</span></code> and <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.flup_session</span></code></li>
<li>Gzip responses in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.gzipper</span></code></li>
<li>A wide variety of routines for manipulating WSGI requests and
producing responses, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.request</span></code>, <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.response</span></code> and
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.wsgilib</span></code>.</li>
<li>Create Apache-style logs in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.translogger</span></code></li>
<li>Handy request and response wrappers in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.wsgiwrappers</span></code></li>
<li>Handling of request-local module globals sanely in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.registry</span></code></li>
</ul>
</div>
<div class="section" id="authentication">
<h2>Authentication<a class="headerlink" href="#authentication" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Authentication using cookies in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.cookie</span></code> and
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.auth_tkt</span></code>; login form in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.form</span></code></li>
<li>Authentication using <a class="reference external" href="http://openid.net/">OpenID</a> in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.open_id</span></code>, using <a class="reference external" href="http://www.ja-sig.org/products/cas/">CAS</a> in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.cas</span></code></li>
<li>HTTP authentication in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.basic</span></code> and
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.digest</span></code></li>
<li>Dispatch to different authentication methods based on User-Agent, in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.multi</span></code></li>
<li>Grant roles based on IP addresses, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.auth.grantip</span></code></li>
</ul>
</div>
<div class="section" id="debugging-filters">
<h2>Debugging Filters<a class="headerlink" href="#debugging-filters" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Catch (optionally email) errors with extended tracebacks (using
Zope/ZPT conventions) in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.exceptions</span></code></li>
<li>During debugging, show tracebacks with information about each stack
frame, including an interactive prompt that runs in the individual
stack frames, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.evalexception</span></code>.</li>
<li>Catch errors presenting a <a class="reference external" href="http://python.org/doc/current/lib/module-cgitb.html">cgitb</a>-based
output, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.cgitb_catcher</span></code>.</li>
<li>Profile each request and append profiling information to the HTML,
in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.debug.profile</span></code></li>
<li>Capture <code class="docutils literal notranslate"><span class="pre">print</span></code> output and present it in the browser for
debugging, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.debug.prints</span></code></li>
<li>Validate all HTML output from applications using the <a class="reference external" href="http://www.htmlhelp.com/tools/validator/">WDG Validator</a>, appending any errors
or warnings to the page, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.debug.wdg_validator</span></code></li>
</ul>
</div>
<div class="section" id="other-tools">
<h2>Other Tools<a class="headerlink" href="#other-tools" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>A file monitor to allow restarting the server when files have been
updated (for automatic restarting when editing code) in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.reloader</span></code></li>
<li>A class for generating and traversing URLs, and creating associated
HTML code, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.url</span></code></li>
<li>A small templating language (for internal use) in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.util.template</span></code></li>
<li>A class to help with loops in templates, in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.util.looper</span></code></li>
<li>Import modules and objects given a string, in
<code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.util.import_string</span></code></li>
<li>Ordered dictionary that can have multiple values with the same key,
in <code class="xref py py-mod docutils literal notranslate"><span class="pre">paste.util.multidict</span></code></li>
</ul>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Paste</a></h1>








<h3>Navigation</h3>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="news.html">News</a></li>
<li class="toctree-l1"><a class="reference internal" href="future.html">The Future Of Paste</a></li>
<li class="toctree-l1"><a class="reference internal" href="testing-applications.html">Testing Applications with Paste</a></li>
<li class="toctree-l1"><a class="reference internal" href="url-parsing-with-wsgi.html">URL Parsing With WSGI And Paste</a></li>
<li class="toctree-l1"><a class="reference internal" href="do-it-yourself-framework.html">A Do-It-Yourself Framework</a></li>
<li class="toctree-l1"><a class="reference internal" href="paste-httpserver-threadpool.html">The Paste HTTP Server Thread Pool</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Features</a></li>
<li class="toctree-l1"><a class="reference internal" href="DeveloperGuidelines.html">Python Paste Developer Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="StyleGuide.html">Paste Style Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="paste-httpserver-threadpool.html">The Paste HTTP Server Thread Pool</a></li>
<li class="toctree-l1"><a class="reference internal" href="testing-applications.html">Testing Applications with Paste</a></li>
<li class="toctree-l1"><a class="reference internal" href="url-parsing-with-wsgi.html">URL Parsing With WSGI And Paste</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/index.html">Community</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/mailing-list.html">Mailing Lists</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/repository.html">Repository</a></li>
<li class="toctree-l1"><a class="reference internal" href="download/index.html">Downloads</a></li>
</ul>

<div class="relations">
<h3>Related Topics</h3>
<ul>
  <li><a href="index.html">Documentation overview</a><ul>
      <li>Previous: <a href="paste-httpserver-threadpool.html" title="previous chapter">The Paste HTTP Server Thread Pool</a></li>
      <li>Next: <a href="DeveloperGuidelines.html" title="next chapter">Python Paste Developer Guide</a></li>
  </ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <div class="searchformwrapper">
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    </div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="footer">
      &copy;2008, Ian Bicking.
      
      |
      Powered by <a href="http://sphinx-doc.org/">Sphinx 1.8.4</a>
      &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.8</a>
      
      |
      <a href="_sources/developer-features.txt"
          rel="nofollow">Page source</a>
    </div>

    

    
  </body>
</html>