Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > c8a19c9b927ea68c8dc1e12e0be9e731 > files > 51

python3-django-appconf-1.0.2-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>Changelog &#8212; django-appconf 1.0.2 documentation</title>
    <link rel="stylesheet" href="_static/classic.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="prev" title="Reference" href="reference.html" /> 
  </head><body>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="reference.html" title="Reference"
             accesskey="P">previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">django-appconf 1.0.2 documentation</a> &#187;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="changelog">
<h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline">¶</a></h1>
<div class="section" id="id1">
<h2>1.0.2 (2016-04-19)<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Minor fixes to test setup</li>
<li>Update supported Django and Python versions, in line with Django’s
own supported versions.</li>
</ul>
</div>
<div class="section" id="id2">
<h2>1.0 (2015-02-15)<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This app precedes Django’s own <a class="reference external" href="https://docs.djangoproject.com/en/stable/ref/applications/#django.apps.AppConfig">AppConfig</a> classes that act as
“objects [to] store metadata for an application” inside Django’s
app loading mechanism. In other words, they solve a related but
different use case than django-appconf and can’t easily be used
as a replacement. The similarity in name is purely coincidental.</p>
</div>
<ul class="simple">
<li>Dropped support of Python 2.5.</li>
<li>Added support for Django 1.7 and 1.8.</li>
<li>Modernized test setup.</li>
</ul>
</div>
<div class="section" id="id3">
<h2>0.6 (2013-01-28)<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Added <code class="docutils literal notranslate"><span class="pre">required</span></code> attribute to <code class="docutils literal notranslate"><span class="pre">Meta</span></code> to be able to specify which
settings are required to be set.</li>
<li>Moved to Travis for the tests: <a class="reference external" href="http://travis-ci.org/jezdez/django-appconf">http://travis-ci.org/jezdez/django-appconf</a></li>
<li>Stopped support for Django 1.2.X.</li>
<li>Introduced support for Python &gt;= 3.2.</li>
</ul>
</div>
<div class="section" id="id4">
<h2>0.5 (2012-02-20)<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Install as a package instead of a module.</li>
<li>Refactored tests to use <a class="reference external" href="https://github.com/kmmbvnr/django-jenkins">django-jenkins</a> for <a class="reference external" href="http://enn.io">enn.io</a>’s <a class="reference external" href="https://ci.enn.io/job/django-appconf/">CI server</a>.</li>
</ul>
</div>
<div class="section" id="id5">
<h2>0.4.1 (2011-09-09)<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fixed minor issue in installation documentation.</li>
</ul>
</div>
<div class="section" id="id6">
<h2>0.4 (2011-08-24)<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Renamed <code class="docutils literal notranslate"><span class="pre">app_label</span></code> attribute of the inner <code class="docutils literal notranslate"><span class="pre">Meta</span></code> class to <code class="docutils literal notranslate"><span class="pre">prefix</span></code>.
The old form <code class="docutils literal notranslate"><span class="pre">app_label</span></code> will work in the meantime.</li>
<li>Added <code class="docutils literal notranslate"><span class="pre">holder</span></code> attribute to the inner <code class="docutils literal notranslate"><span class="pre">Meta</span></code> class to be able to
specify a custom “global” setting holder. Default: “‘django.conf.settings’”</li>
<li>Added <code class="docutils literal notranslate"><span class="pre">proxy</span></code> attribute to the inner <code class="docutils literal notranslate"><span class="pre">Meta</span></code> class to enable proxying
of <code class="docutils literal notranslate"><span class="pre">AppConf</span></code> instances to the settings holder, e.g. the global Django
settings.</li>
<li>Fixed issues with <code class="docutils literal notranslate"><span class="pre">configured_data</span></code> dictionary available in the
<code class="docutils literal notranslate"><span class="pre">configure</span></code> method of <code class="docutils literal notranslate"><span class="pre">AppConf</span></code> classes with regard to subclassing.</li>
</ul>
</div>
<div class="section" id="id7">
<h2>0.3 (2011-08-23)<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Added tests with 100% coverage.</li>
<li>Added ability to subclass <code class="docutils literal notranslate"><span class="pre">Meta</span></code> classes.</li>
<li>Fixed various bugs with subclassing and configuration in subclasses.</li>
</ul>
</div>
<div class="section" id="id8">
<h2>0.2.2 (2011-08-22)<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fixed another issue in the <code class="docutils literal notranslate"><span class="pre">configure()</span></code> API.</li>
</ul>
</div>
<div class="section" id="id9">
<h2>0.2.1 (2011-08-22)<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fixed minor issue in <code class="docutils literal notranslate"><span class="pre">configure()</span></code> API.</li>
</ul>
</div>
<div class="section" id="id10">
<h2>0.2 (2011-08-22)<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Added <code class="docutils literal notranslate"><span class="pre">configure()</span></code> API to <code class="docutils literal notranslate"><span class="pre">AppConf</span></code> class which is called after
configuring each setting.</li>
</ul>
</div>
<div class="section" id="id11">
<h2>0.1 (2011-08-22)<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>First public release.</li>
</ul>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="index.html">Table of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Changelog</a><ul>
<li><a class="reference internal" href="#id1">1.0.2 (2016-04-19)</a></li>
<li><a class="reference internal" href="#id2">1.0 (2015-02-15)</a></li>
<li><a class="reference internal" href="#id3">0.6 (2013-01-28)</a></li>
<li><a class="reference internal" href="#id4">0.5 (2012-02-20)</a></li>
<li><a class="reference internal" href="#id5">0.4.1 (2011-09-09)</a></li>
<li><a class="reference internal" href="#id6">0.4 (2011-08-24)</a></li>
<li><a class="reference internal" href="#id7">0.3 (2011-08-23)</a></li>
<li><a class="reference internal" href="#id8">0.2.2 (2011-08-22)</a></li>
<li><a class="reference internal" href="#id9">0.2.1 (2011-08-22)</a></li>
<li><a class="reference internal" href="#id10">0.2 (2011-08-22)</a></li>
<li><a class="reference internal" href="#id11">0.1 (2011-08-22)</a></li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="reference.html"
                        title="previous chapter">Reference</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/changelog.rst.txt"
            rel="nofollow">Show Source</a></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="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="reference.html" title="Reference"
             >previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">django-appconf 1.0.2 documentation</a> &#187;</li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; Copyright 2011-2013, Jannis Leidel and individual contributors.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.8.3.
    </div>
  </body>
</html>